mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-05 13:46:59 +00:00
34 lines
770 B
JSON
34 lines
770 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["esnext", "dom"],
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"noEmit": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"exclude": [
|
|
"**/node_modules",
|
|
"**/lib",
|
|
"**/.eslintrc.js",
|
|
"**/.prettierrc.js",
|
|
"**/jest.config.js",
|
|
"**/babel.config.js",
|
|
"**/metro.config.js",
|
|
"**/tsconfig.json"
|
|
],
|
|
"include": ["src/**/*", "nitrogen/**/*.json"]
|
|
}
|