40 lines
863 B
JSON
40 lines
863 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "src",
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-native",
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noImplicitAny": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"typeRoots": ["node_modules/@types", "./src/Types/*"],
|
|
"paths": {
|
|
"@Components/*": ["./Components/*"],
|
|
"@Lib/*": ["./Lib/*"],
|
|
"@Screens/*": ["./Screens/*"],
|
|
"@Style/*": ["./Style/*"],
|
|
"@Root/*": ["./*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js",
|
|
"e2e",
|
|
"html",
|
|
"android",
|
|
"WebFrame",
|
|
"ios",
|
|
"fastlane"
|
|
]
|
|
}
|