This repository has been archived on 2024-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
p61-project/tsconfig.json

19 lines
454 B
JSON
Raw Normal View History

2024-02-16 22:51:50 +01:00
{
"extends": ["@tsconfig/strictest/tsconfig.json", "expo/tsconfig.base"],
"compilerOptions": {
"strict": true,
"exactOptionalPropertyTypes": false,
"allowJs": false,
"checkJs": false,
"types": [
"@total-typescript/ts-reset",
"jest",
"@testing-library/react-native/extend-expect"
],
"paths": {
"@/*": ["./*"]
}
},
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"]
}