Skip to content

Commit

Permalink
fix files load
Browse files Browse the repository at this point in the history
  • Loading branch information
killserver committed Jun 23, 2023
1 parent 51fdb05 commit aa08ac2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# node.js
#
node_modules/
lib/
npm-debug.log
yarn-error.log

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"@react-native-community/eslint-config": "^3.0.2",
"@release-it/conventional-changelog": "^5.0.0",
"@types/jest": "^28.1.2",
"@types/node": "^20.3.1",
"@types/react": "~17.0.21",
"@types/react-native": "0.70.0",
"del-cli": "^5.0.0",
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@
"paths": {
"react-native-screenshot-prevent": ["./src/index"]
},
"ignoreDeprecations": "5.0",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"allowJs": true,
"esModuleInterop": true,
"importsNotUsedAsValues": "error",
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"lib": ["esnext"],
"lib": ["esnext","ES6","DOM"],
"types": ["react"],
"module": "esnext",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
Expand Down

0 comments on commit aa08ac2

Please sign in to comment.