-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (35 loc) · 951 Bytes
/
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": {
"paths": {
"@api/*": ["./src/api/*"],
"@store/*": ["./src/store/*"],
"@assets/*": ["./src/assets/*"],
"@component/*": ["./src/component/*"],
"@navigation/*": ["./src/navigation/*"],
"@navigators/*": ["./src/navigators/*"],
"@screens/*": ["./src/screens/*"],
"@theme/*": ["./src/theme/*"],
"@utils/*": ["./src/utils/*"],
"@typo/*": ["./src/typography/*"],
"@hooks/*": ["./src/hooks/*"]
},
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": false,
"jsx": "react",
"lib": ["es6", "dom"],
"moduleResolution": "node",
"noEmit": true,
"strict": true,
"noImplicitAny": false,
"target": "esnext"
},
"typeRoots": ["node_modules/@types", "custom_typings/"],
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js"
]
}