mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
3e4bd458b3
* working on easy global shortcut for wave * globalshortcut setting working * cmd for macos, alt for others * re-remove types.ts (was added back during merge) * rename DDItem to DropdownItem, put into custom.d.ts * make some consts
32 lines
1.5 KiB
JSON
32 lines
1.5 KiB
JSON
{
|
|
"include": ["src/**/*", "types/**/*"],
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"jsx": "preserve",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"experimentalDecorators": true,
|
|
"downlevelIteration": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/app/*": ["src/app/*"], // Points to the src folder
|
|
"@/util/*": ["src/util/*"], // Points to the src folder
|
|
"@/models": ["src/models/index"], // Points directly to the index file
|
|
"@/models/*": ["src/models/*"], // For everything else inside models
|
|
"@/common/*": ["src/app/common/*"], // For everything else inside models
|
|
"@/elements": ["src/app/common/elements/index"], // Points directly to the index file
|
|
"@/elements/*": ["src/app/common/elements/*"], // For everything else inside models
|
|
"@/modals": ["src/app/common/modals/index"], // Points directly to the index file
|
|
"@/modals/*": ["src/app/common/modals/*"], // For everything else inside models
|
|
"@/assets/*": ["src/app/assets/*"], // For everything else inside models
|
|
"@/plugins/*": ["src/plugins/*"], // For everything else inside models
|
|
}
|
|
}
|
|
}
|