-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1.06 KB
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"strict": true,
"allowSyntheticDefaultImports": true,
"types": ["jest"],
"experimentalDecorators": true,
"jsx": "react-native",
"module": "es2015",
"sourceMap": true,
"target": "esnext",
"lib": ["esnext", "dom"],
"skipLibCheck": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@env": ["./src/lib/env.js"],
"@assets/*": ["./assets/*"],
"tailwind.config": ["./tailwind.config.js"]
},
"esModuleInterop": true,
"checkJs": true,
"typeRoots": ["./node_modules/@types", "./types"]
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
},
"exclude": ["docs", "cli", "android", "lib", "ios", "node_modules", "storybookDocsComponents", "__mocks__"],
"include": ["src/**/*.ts", "src/**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts", "nativewind-env.d.ts", "app.config.ts", "jest-setup.ts", "jest-platform-setup.ts", "__tests__/**/*.ts", "__tests__/**/*.tsx", "types/**/*.ts"]
}