17 lines
478 B
JSON
17 lines
478 B
JSON
{
|
|
"extends": "expo/tsconfig.base",
|
|
"compilerOptions": {
|
|
"strict": false,
|
|
"jsx": "react-native",
|
|
"esModuleInterop": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
},
|
|
"skipLibCheck": true,
|
|
"noImplicitAny": false
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts", "nativewind-env.d.ts", "jest.d.ts"],
|
|
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js", "android", "ios"]
|
|
}
|