spacedrive/apps/mobile/tsconfig.json
Utku 7b739d0b33
Mobile Strict Mode and Types (#578)
* better compiler options

* fix types

* fix more types
2023-02-24 08:11:48 +00:00

28 lines
600 B
JSON

{
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"jsx": "react-native",
"lib": ["DOM", "ESNext"],
"moduleResolution": "node",
"resolveJsonModule": true,
"skipLibCheck": true,
"target": "ESNext",
"module": "ESNext",
"noEmit": true,
"paths": {
"~/*": ["./src/*"]
},
"strict": true,
"noUncheckedIndexedAccess": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true
},
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"],
"references": [
{
"path": "../../packages/client"
}
]
}