-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
49 lines (49 loc) · 975 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"compilerOptions": {
"lib": [
"ESNext",
"dom",
"dom.iterable"
],
"allowJs": true,
"target": "ESNext",
"module": "ESNext",
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
"outDir": "dist",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"paths": {
"@src/*": [
"src/*"
],
"@main/*": [
"src/main/*"
],
"@renderer/*": [
"src/renderer/*"
],
"@store/*": [
"src/renderer/store/*"
],
"@components/*": [
"src/renderer/components/*"
],
},
"typeRoots": [
"./node_modules/@types/",
"./src/types/"
],
},
"include": [
"src/**/*",
"static/Easemob-chat-3.6.3.js"
]
}