25 lines
455 B
JSON
25 lines
455 B
JSON
|
|
{
|
||
|
|
"extends": "expo/tsconfig.base",
|
||
|
|
"compilerOptions": {
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"baseUrl": ".",
|
||
|
|
"strict": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"**/*.spec.ts",
|
||
|
|
"**/*.test.ts",
|
||
|
|
"**/*.spec.tsx",
|
||
|
|
"**/*.test.tsx",
|
||
|
|
"dist",
|
||
|
|
"build",
|
||
|
|
".expo"
|
||
|
|
]
|
||
|
|
}
|