-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.32 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
{
"extends": ["../../common.tsconfig.json"],
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"isolatedModules": false,
"baseUrl": ".",
"paths": {
"~/*": ["App/*"],
"/root/*": ["./*"],
"/components/*": ["App/ui/components/*"],
"/styled/*": ["App/ui/styled/*"],
"/interfaces/*": ["App/ui/interfaces/*"],
"/helpers/*": ["App/ui/helpers/*"],
"/types/*": ["App/types/*"],
"/navigation/*": ["App/ui/navigation/*"],
"/containers/*":["App/ui/containers/*"],
"/contexts/*":["App/ui/contexts/*"],
"/store/*": ["App/ui/store/*"],
"/models/*": ["App/ui/models/*"],
"/services/*": ["App/ui/services/*"],
"/domain/*": ["App/domain/*"],
"/data/*": ["App/data/*"],
"/infra/*": ["App/infra/*"],
"/presentation/*": ["App/presentation/*"],
"/migrations/*": ["App/migrations/*"]
},
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"jsx": "react",
"lib": ["es2019"],
"skipLibCheck": true,
"strict": false,
"noImplicitThis": false,
"target": "es2019"
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js"
]
}