We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be01c8a commit f0593f3Copy full SHA for f0593f3
2 files changed
package.json
@@ -4,8 +4,8 @@
4
"description": "Session Storage like module for React Native for session-bound storage.",
5
"main": "./lib/module/index.js",
6
"types": "./lib/typescript/src/index.d.ts",
7
- "react-native": "src/index",
8
- "source": "src/index",
+ "react-native": "src/index.tsx",
+ "source": "src/index.tsx",
9
"files": [
10
"src",
11
"lib",
tsconfig.json
@@ -1,6 +1,11 @@
1
{
2
"include": ["src/**/*"],
3
- "exclude": ["node_modules"],
+ "exclude": [
+ "node_modules",
+ "src/**/*.test.*",
+ "src/**/*.spec.*",
+ "tests/**/*"
+ ],
"compilerOptions": {
"rootDir": "./",
"allowUnreachableCode": false,
0 commit comments