-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 800 Bytes
/
Copy pathtsconfig.json
File metadata and controls
29 lines (29 loc) · 800 Bytes
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
{
"compileOnSave": false,
"compilerOptions": {
"resolveJsonModule": true,
"baseUrl": "./",
"outDir": "./dist/electron",
"sourceMap": true,
"declaration": false,
"module": "esnext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ESNext",
"paths": {
"@config/*": ["config/*"],
"@ipcManager/*": ["src/ipc-manager/*"],
"@renderer/*": ["src/renderer/*"],
"@main/*": ["src/main/*"]
},
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"],
"forceConsistentCasingInFileNames": true,
"strict": true
},
"include": ["src/**/*", "customTypes/*"],
"exclude": ["node_modules"]
}