28 lines
567 B
JSON
28 lines
567 B
JSON
{
|
|
"extends": "expo/tsconfig.base",
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"jsx": "react-native",
|
|
"baseUrl": ".",
|
|
"lib": ["ES2020", "DOM"],
|
|
"useDefineForClassFields": true,
|
|
"paths": {
|
|
"@/*": ["./*"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts", "nativewind-env.d.ts"],
|
|
"exclude": [
|
|
"scripts/**/*",
|
|
"storage.ts",
|
|
"node_modules",
|
|
"babel.config.js",
|
|
"metro.config.js",
|
|
"node_modules/**",
|
|
"docs",
|
|
"cli",
|
|
"android",
|
|
"ios",
|
|
"lint-staged.config.js"
|
|
]
|
|
}
|