-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.node.json
40 lines (40 loc) · 983 Bytes
/
tsconfig.node.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
{
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
"include": [
"electron.vite.config.*",
"package.json",
"src/main/*",
"src/main/**/*",
"src/main/utils/*",
"src/main/lib/*",
"src/main/workers/*",
"src/main/commands/*",
"src/main/workers/worker-simple.ts",
"src/preload/*",
"src/shared/*",
"src/shared/lib/*",
"src/types/*",
],
"compilerOptions": {
"composite": true,
/* Bundler mode */
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": false,
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"@main/*": ["src/main/*"],
"types/*": ["src/types/*"],
"@shared/*": ["src/shared/*"],
"@locale/*": ["src/shared/locale/*"],
"@pjson": ["package.json"],
}
}
}