37 lines
678 B
JSON
37 lines
678 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"ES2021",
|
|
"DOM"
|
|
],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"types": [
|
|
"jest"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"*.ts",
|
|
"*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"android",
|
|
"ios",
|
|
"../react-native-dt-theme"
|
|
],
|
|
"extends": "expo/tsconfig.base"
|
|
}
|