-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (44 loc) · 1.18 KB
/
tsconfig.json
File metadata and controls
44 lines (44 loc) · 1.18 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
34
35
36
37
38
39
40
41
42
43
44
{
"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"],
"customConditions": ["import"]
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
},
"exclude": [
"node_modules",
"node_modules/**/*",
"**/node_modules/*",
"docs",
"cli",
"android",
"lib",
"ios",
"storybookDocsComponents"
],
"include": ["src/**/*.ts", "src/**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts", "nativewind-env.d.ts", "__mocks__/**/*.ts", "app.config.ts", "jest-setup.ts", "jest-platform-setup.ts", "__tests__/**/*.ts", "__tests__/**/*.tsx", "types/**/*.ts"]
}