-
Notifications
You must be signed in to change notification settings - Fork 165
/
tsconfig.json
executable file
·63 lines (63 loc) · 1.79 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compilerOptions": {
"outDir": "./dist",
"baseUrl": "./",
"noImplicitAny": true,
"allowJs": false,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "nodenext",
"sourceMap": true,
"preserveConstEnums": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": false,
"noImplicitThis": false,
"allowUnusedLabels": true,
"noUnusedLocals": false,
"strictNullChecks": false,
"lib": [
"dom",
"es7",
"esnext"
],
"typeRoots": [
"node_modules/@types",
"src/types/**/*.d.ts"
],
"paths": {
"Main": ["src/main"],
"Main/*": ["src/main/*"],
"Icons": ["src/renderer/Common/Icons"],
"Icons/*": ["src/renderer/Common/Icons/*"],
"Common": ["src/renderer/Common"],
"Common/*": ["src/renderer/Common/*"],
"Components": ["src/renderer/components"],
"Components/*": ["src/renderer/components/*"],
"Containers": ["src/renderer/Common/Containers"],
"Containers/*": ["src/renderer/Common/Containers/*"],
"Elements/*": ["src/renderer/elements/*"],
"Elements": ["src/renderer/elements"],
"Store": ["src/renderer/stores"],
"Store/*": ["src/renderer/stores/*"],
"DesktopAPI": ["DesktopAPI"],
"DesktopAPI/*": ["DesktopAPI/*"],
"Const": ["src/constants"],
"Utils": ["src/utils"],
"Utils/*": ["src/utils/*"],
"Enums": ["src/types/enums.ts"],
"Storage": ["src/main/Storage.ts"],
"Types": ["src/types"],
"Types/*": ["src/types/*"],
"*": ["node_modules/@types/*"]
}
},
"include": [
"src/constants/**/*",
"src/main/**/*",
"src/types/**/*",
"src/utils/**/*",
]
}