forked from chaterm/Chaterm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
26 lines (26 loc) · 892 Bytes
/
tsconfig.node.json
File metadata and controls
26 lines (26 loc) · 892 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
{
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
"include": ["electron.vite.config.*", "src/main/**/*", "src/preload/**/*", "package.json"],
"exclude": ["node_modules","dist"],
"compilerOptions": {
"composite": true,
"types": ["electron-vite/node"],
"baseUrl": ".",
"outDir": "dist/main",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"moduleResolution": "node",
"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/*"],
"@core/*": ["src/main/agent/core/*"],
"vscode": ["src/main/agent/vscode-mock.ts"]
}
}
}