-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
43 lines (43 loc) · 1.21 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
36
37
38
39
40
41
42
43
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react-native",
"lib": ["es5", "es6", "dom", "esnext", "dom.iterable"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"module": "commonjs",
"noEmit": true,
"target": "es6",
"skipLibCheck": true,
"resolveJsonModule": true,
"strict": true,
"baseUrl": ".",
"paths": {
"@/app/*": ["./src/app/*"],
"@/assets/*": ["./src/assets/*"],
"@/common/*": ["./src/common/*"],
"@/components/*": ["./src/components/*"],
"@/context/*": ["./src/context/*"],
"@/features/*": ["./src/features/*"],
"@/lib/*": ["./src/lib/*"],
"@/navigation/*": ["./src/navigation/*"],
"@/providers/*": ["./src/providers/*"],
"@/screens/*": ["./src/screens/*"],
"@/theme/*": ["./src/theme/*"],
"@/appTypes/*": ["./src/types/*"],
"@/styles/*": ["./src/styles/*"]
},
"types": ["jest"]
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js",
"**/*.spec.ts",
"**/*.test.ts"
],
"include": ["./src/**/*.tsx", "./src/**/*.ts"]
}