-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.05 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": {
"outDir": "./dist",
"baseUrl": ".",
"target": "es5",
"lib": ["es6", "dom", "es7"],
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"sourceMap": true,
"jsx": "react",
"strict": true,
"skipLibCheck": true,
"noImplicitAny": false,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"downlevelIteration": true,
"noImplicitThis": true,
"importsNotUsedAsValues": "error",
"paths": {
"@redux/*": ["src/shared/redux/*"],
"@shared/*": ["./src/shared/*"],
"@web/*": ["./src/web/*"],
"@app/*": ["./src/app/src/*"],
"@portal/*": ["./src/portal/*"],
"@rtc/*": ["./src/rtc/*"],
"@test/*": ["./test/*"],
"@src/*": ["./src/*"]
}
},
"include": [
"./node_modules/@types/",
"./config/",
"./src/",
"./test/",
"./types/"
],
"exclude": [
"./cypress/",
"./src/app/",
"./src/appv2/",
"./src/mini-program/",
"./src/plugins/"
]
}