27 lines
621 B
JSON
27 lines
621 B
JSON
{
|
|
"extends": "@react-native/typescript-config",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react",
|
|
"lib": ["es2020"],
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"types": ["jest"],
|
|
"paths": {}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"jest.config.js",
|
|
"**/Pods"
|
|
]
|
|
} |