Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ecoscan_app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "prettier . --check && expo lint --max-warnings=0",
"fix": "prettier . --write && expo lint --fix"
"lint": "prettier . --check && tsc --noEmit && expo lint --max-warnings=0",
"fix": "prettier . --write && tsc --noEmit && expo lint --fix"
},
"dependencies": {
"@expo/vector-icons": "15.1.1",
Expand Down
7 changes: 7 additions & 0 deletions ecoscan_app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": ["./*"]
}
Expand Down
Loading