mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-05 21:58:54 +00:00
38 lines
943 B
JSON
38 lines
943 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"jsx": "react",
|
|
"lib": ["esnext"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmit": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitUseStrict": false,
|
|
"noStrictGenericChecks": false,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": 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"]
|
|
}
|