-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
31 lines (31 loc) · 1.13 KB
/
Copy pathtsconfig.node.json
File metadata and controls
31 lines (31 loc) · 1.13 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": "@electron-toolkit/tsconfig/tsconfig.node.json",
"include": ["electron.vite.config.*", "src/main/**/*", "src/preload/**/*", "src/shared/**/*", "package.json"],
"exclude": ["node_modules","dist"],
"compilerOptions": {
"composite": true,
"types": ["electron-vite/node"],
"baseUrl": ".",
"outDir": "dist/main",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {
"@services/*": ["src/main/agent/services/*"],
"@api/*": ["src/main/agent/api/*"],
"@integrations/*": ["src/main/agent/integrations/*"],
"@utils/*": ["src/main/agent/utils/*"],
"@shared/*": ["src/main/agent/shared/*"],
"@storage/*": ["src/main/storage/*"],
"@core/*": ["src/main/agent/core/*"],
"@logging": ["src/main/services/logging/index.ts"],
"@logging/*": ["src/main/services/logging/*"],
"@perf": ["src/main/services/perf/index.ts"],
"@perf/*": ["src/main/services/perf/*"],
"@common/*": ["src/shared/*"]
}
}
}