2019-03-03 14:39:57 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2022-08-21 16:22:32 +08:00
|
|
|
"allowJs": false,
|
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"importsNotUsedAsValues": "error",
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"jsx": "react-native",
|
|
|
|
|
"lib": ["esnext"],
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noStrictGenericChecks": false,
|
2019-03-03 14:39:57 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
2022-08-21 16:22:32 +08:00
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"resolveJsonModule": true,
|
2019-03-03 14:39:57 +08:00
|
|
|
"skipLibCheck": true,
|
2022-08-21 16:22:32 +08:00
|
|
|
"strict": true,
|
|
|
|
|
"target": "esnext",
|
|
|
|
|
"outDir": "lib"
|
2019-03-03 14:39:57 +08:00
|
|
|
},
|
2022-08-21 16:22:32 +08:00
|
|
|
"include": ["src", ".eslintrc.js", "babel.config.js"],
|
|
|
|
|
"exclude": ["node_modules", "lib", "docs", "example"]
|
2019-03-03 14:39:57 +08:00
|
|
|
}
|