forked from leanhtuan1994/react-native-template-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 1.12 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
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"lib": ["es6"],
"allowJs": true,
"jsx": "react-native",
"noEmit": true,
"isolatedModules": true,
"strict": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"*": ["app/*"],
"images": ["assets/images"],
"navigation": ["app/navigation"],
"navigation/*": ["app/navigation/*"],
"screens": ["app/screens"],
"screens/*": ["app/screens/*"],
"splash": ["app/screens/splash"],
"utils": ["app/utils"],
"utils/*": ["app/utils/*"],
"translations": ["app/utils/translations"],
"translations/*": ["app/utils/translations/*"],
"languages": ["languages"],
"styles": ["app/styles"],
"styles/*": ["app/styles/*"],
"components": ["app/components"],
"components/*": ["app/components/*"],
"constant": ["app/constant"],
"context/*": ["app/context/*"]
}
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js"
]
}