33 lines
674 B
JSON
33 lines
674 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/*"]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js",
|
|
"e2e",
|
|
"html",
|
|
"android",
|
|
"WebFrame",
|
|
"ios",
|
|
"fastlane"
|
|
]
|
|
}
|