-
Notifications
You must be signed in to change notification settings - Fork 23
/
tsconfig.json
35 lines (35 loc) · 906 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": {
"baseUrl": "./src",
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"skipLibCheck": true,
"allowJs": true,
"noEmit": true,
"strict": true,
"isolatedModules": false,
"esModuleInterop": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"paths": {
"actions/*": ["domain/actions/*"],
"@components/*": ["views/components/*"],
"@containers/*": ["views/containers/*"],
"@views/*": ["views/*"],
"@typings/*": ["typings/*"],
"@services/*": ["domain/services/*"],
"store/*": ["domain/store/*"],
"selectors/*": ["domain/selectors/*"],
"constants/*": ["constants/*"],
"helpers/*": ["helpers/*"],
}
},
"include": [
"**/*.ts",
"**/*.tsx",
"node_modules/cypress",
"cypress/*/*.ts",
],
"exclude": ["dist", "node_modules"]
}