-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.4 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
{
"compilerOptions": {
"target": "es2017",
"module": "es2015",
"lib": ["es2017", "dom", "dom.iterable"],
"sourceMap": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitThis": false,
"noImplicitAny": false,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"plugins": [
{
"name": "ts-lit-plugin",
"strict": true,
"rules": {
"no-missing-import": "off"
}
}
],
"baseUrl": ".",
"paths": {
"@components/*": ["src/renderer/components/*"],
"@fonts/*": ["src/renderer/assets/fonts/*"],
"@images/*": ["src/renderer/assets/images/*"],
"@pages/*": ["src/renderer/pages/*"],
"@styles/*": ["src/renderer/assets/scss/*"],
"@constants": ["./src/constants.ts"],
"@menus": ["./src/menus/index.ts"],
"@menus/*": ["./src/menus/*"],
"@storage": ["./src/storage/index.ts"],
"@storage/*": ["./src/storage/*"],
"@translations": ["src/translations/index.ts"],
"@translations/*": ["src/translations/*"],
"@types": ["src/types.ts"],
"@utils": ["src/utils/index.ts"],
"@utils/*": ["src/utils/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": []
}