-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
46 lines (46 loc) · 1.36 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
44
45
46
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-native",
"lib": [
"es2017",
"ES2021.String"
],
"moduleResolution": "node",
"noEmit": true,
"strict": true,
"target": "esnext",
"baseUrl": ".",
"paths": {
"@/assets/*": ["./src/assets/*"],
"@/components/*": ["./src/components/*"],
"@/config/*": ["./src/config/*"],
"@/constants/*": ["./src/constants/*"],
"@/hooks/*": ["./src/hooks/*"],
"@/interfaces/*": ["./src/interfaces/*"],
"@/modules/*": ["./src/modules/*"],
"@/navigation/*": ["./src/navigation/*"],
"@/redux/*": ["./src/redux/*"],
"@/screens/*": ["./src/screens/*"],
"@/services/*": ["./src/services/*"],
"@/utils/*": ["./src/utils/*"],
// Usefull aliases:
"@/buttons/*": ["./src/components/buttons/*"],
"@/commonComponents/*": ["./src/components/common/*"],
"@/formatters/*": ["./src/components/formatters/*"],
"@/icons": ["./src/components/icons/index"],
"@/icons/*": ["./src/components/icons/*"],
"@/layout": ["./src/components/layout/index"],
"@/tokens/*": ["./src/components/tokens/*"],
}
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js"
]
}