forked from Venipa/ytmdesktop2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
38 lines (38 loc) · 968 Bytes
/
tsconfig.node.json
File metadata and controls
38 lines (38 loc) · 968 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
30
31
32
33
34
35
36
37
38
{
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
"include": [
"src/env.d.ts",
"electron.vite.config.*",
"src/vite-plugins/*.ts",
"src/main/**/*",
"src/preload/**/*",
"src/shared/**/*.ts",
"src/translations/**/*.ts",
"src/renderer-plugins/**/*.ts"
],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"composite": true,
"resolveJsonModule": true,
"moduleResolution": "Bundler",
"skipLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"isolatedModules": false,
"strictNullChecks": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": ["electron-vite/node"],
"baseUrl": ".",
"paths": {
"@shared/*": ["src/shared/*"],
"@translations/*": ["src/translations/*"],
"@main/*": ["src/main/*"],
"@/*": ["src/main/*"],
"@preload/*": ["src/preload/*"],
"@plugins/*": ["src/renderer-plugins/*"],
"~/*": ["*"]
}
}
}