-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathtsconfig.web.json
More file actions
49 lines (49 loc) · 1.4 KB
/
Copy pathtsconfig.web.json
File metadata and controls
49 lines (49 loc) · 1.4 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
"include": [
"src/renderer/src/env.d.ts",
"src/renderer/auto-imports.d.ts",
"src/renderer/src/**/*",
"src/renderer/src/**/*.vue",
"src/preload/*.d.ts",
"src/main/agent/shared/**/*",
"src/shared/**/*"
],
"exclude": [
"node_modules",
"dist",
"src/main/agent/core/**/*",
"src/main/agent/services/**/*",
"src/main/agent/api/**/*",
"src/main/agent/integrations/**/*",
"src/main/agent/utils/**/*",
"src/main/storage/**/*",
"src/main/index.ts",
"src/main/plugin/**/*",
"src/main/ssh/**/*",
"src/main/themeManager.ts",
"src/main/updater.ts",
"src/main/version/**/*",
"src/main/windowManager.ts"
],
"compilerOptions": {
"composite": true,
"allowJs": true,
"baseUrl": ".",
"outDir": "dist/renderer",
"noEmit": false,
"paths": {
"@renderer/*": ["src/renderer/src/*"],
"@views/*": ["src/renderer/src/views/*"],
"@router/*": ["src/renderer/src/router/*"],
"@store/*": ["src/renderer/src/store/*"],
"@utils/*": ["src/renderer/src/utils/*"],
"@api/*": ["src/renderer/src/api/*"],
"@config/*": ["src/renderer/src/config/*"],
"@/*": ["src/renderer/src/*"],
"@shared/*": ["src/main/agent/shared/*"],
"@logging": ["src/renderer/src/types/logging-web-stub.d.ts"],
"@common/*": ["src/shared/*"]
}
}
}