34 lines
752 B
JSON
34 lines
752 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": [
|
|
"es2019"
|
|
],
|
|
"jsx": "react-native",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"types": [
|
|
"react-native",
|
|
"jest",
|
|
"typeorm"
|
|
],
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": false,
|
|
"skipLibCheck": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js"
|
|
],
|
|
"extends": "@react-native/typescript-config/tsconfig.json"
|
|
} |