-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
35 lines (35 loc) · 1 KB
/
tsconfig.json
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
{
"compilerOptions": {
"target": "es2019",
"module": "commonjs",
"moduleResolution": "node",
"lib": ["es6", "dom"],
"baseUrl": ".",
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"strict": true,
"paths": {
"@/api/*": ["./src/api/*"],
"@/assets/*": ["./src/assets/*"],
"@/components/*": ["./src/components/*"],
"@/config/*": ["./src/config/*"],
"@/lib/*": ["./src/lib/*"],
"@/localization/*": ["./src/localization/*"],
"@/navigation/*": ["./src/navigation/*"],
"@/rtk/*": ["./src/rtk/*"],
"@/screens/*": ["./src/screens/*"],
"@/theme": ["./src/theme/index"],
"@/utils": ["./src/utils/index"]
},
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react-native",
"noEmit": true,
"resolveJsonModule": true
},
"include": ["src", "app.json"],
"exclude": ["node_modules", "__tests__"]
}