Massive/tsconfig.json

34 lines
752 B
JSON
Raw Permalink Normal View History

2022-06-30 06:50:52 +00:00
{
"compilerOptions": {
"target": "esnext",
"lib": [
"es2019"
],
"jsx": "react-native",
2024-02-17 06:10:43 +00:00
"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
2022-06-30 06:50:52 +00:00
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js"
],
"extends": "@react-native/typescript-config/tsconfig.json"
}