53 lines
980 B
JSON
53 lines
980 B
JSON
|
|
{
|
||
|
|
"extends": "expo/tsconfig.base",
|
||
|
|
"compilerOptions": {
|
||
|
|
"allowJs": false,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"jsx": "react-native",
|
||
|
|
"customConditions": [
|
||
|
|
"react-native"
|
||
|
|
],
|
||
|
|
"module": "esnext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noImplicitThis": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"target": "esnext",
|
||
|
|
"lib": [
|
||
|
|
"esnext",
|
||
|
|
"dom"
|
||
|
|
],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": [
|
||
|
|
"./app/*"
|
||
|
|
],
|
||
|
|
"@assets/*": [
|
||
|
|
"./assets/*"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"typeRoots": [
|
||
|
|
"./node_modules/@types",
|
||
|
|
"./types"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"ts-node": {
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "commonjs"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"**/*.ts",
|
||
|
|
"**/*.tsx",
|
||
|
|
"nativewind-env.d.ts"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"test/**/*"
|
||
|
|
]
|
||
|
|
}
|