39 lines
702 B
JSON
39 lines
702 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-native",
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"strict": true,
|
|
"target": "esnext",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@/components/*": [
|
|
"./src/components/*"
|
|
],
|
|
"@/lib/*": [
|
|
"./src/lib/*"
|
|
],
|
|
"@/types/*": [
|
|
"./src/types/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"jest.config.js"
|
|
],
|
|
"extends": "expo/tsconfig.base"
|
|
}
|