-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
31 lines (31 loc) · 1.08 KB
/
tsconfig.node.json
File metadata and controls
31 lines (31 loc) · 1.08 KB
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
{
"extends": "./tsconfig.json",
"include": ["vite.config.*", "src/main/**/*", "src/preload/**/*", "src/types/**/*"],
"exclude": ["**/__tests__/**", "**/*.test.ts", "**/*.test.tsx"],
"compilerOptions": {
"composite": true,
"types": ["node", "w3c-web-usb"],
"target": "es2024",
"module": "nodenext",
"lib": ["es2024"],
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "nodenext",
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@main/*": ["./src/main/*"],
"@shared/*": ["./src/main/shared/*"],
"@projection/messages": ["./src/main/services/projection/messages/index.ts"],
"@projection/messages/*": ["./src/main/services/projection/messages/*"],
"@projection/node": ["./src/main/services/projection/node"],
"@projection/*": ["./src/main/services/projection/*"],
"@audio": ["./src/main/audio/index.ts"]
}
}
}