forked from wavetermdev/waveterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
35 lines (35 loc) · 1.75 KB
/
tsconfig.json
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
{
"include": ["src/**/*", "types/**/*"],
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"jsx": "preserve",
"lib": ["ES2022"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"isolatedModules": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"baseUrl": "./",
"types": ["@withfig/autocomplete-types"],
"paths": {
"@/app/*": ["src/app/*"], // Points to the app folder
"@/util/*": ["src/util/*"], // Points to the util folder
"@/models": ["src/models/index"], // Points directly to the models index file
"@/models/*": ["src/models/*"], // For everything else inside models
"@/common/*": ["src/app/common/*"], // For everything else inside common
"@/elements": ["src/app/common/elements/index"], // Points directly to the elements index file
"@/elements/*": ["src/app/common/elements/*"], // For everything else inside elements
"@/modals": ["src/app/common/modals/index"], // Points directly to the modals index file
"@/modals/*": ["src/app/common/modals/*"], // For everything else inside modals
"@/assets/*": ["src/app/assets/*"], // For everything else inside assets
"@/plugins/*": ["src/plugins/*"], // For everything else inside plugins
"@/autocomplete": ["src/autocomplete/index"], // Points directly to the autocomplete index file
"@/autocomplete/*": ["src/autocomplete/*"], // For everything else inside autocomplete
}
}
}