mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
5abff8075b
This was mostly straightforward, but it appears that a previous commit to main broke the user input modals by deleting a function. This adds that back in addition to the merge.
33 lines
1.5 KiB
JSON
33 lines
1.5 KiB
JSON
{
|
|
"include": ["src/**/*", "types/**/*"],
|
|
// "exclude": ["src/electron/emain.ts"],
|
|
"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
|
|
}
|
|
}
|
|
}
|