mirror of
https://github.com/wavetermdev/waveterm
synced 2026-04-21 14:37:16 +00:00
Large PR that extends WaveEnv mocking to fully cover the (complicated) TabBar implementation. Also includes a full preview of the tab bar in the preview server with lots of controls to simulate different scenarios. As a result of this mocking, also fixed a bunch of dependencies, and layout errors, random bugs, and visual UX bugs in the tab bar, making it more robust. --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: sawka <2722291+sawka@users.noreply.github.com> Co-authored-by: sawka <mike@commandline.dev>
33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
{
|
|
"include": ["frontend/**/*", "emain/**/*"],
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "es2020",
|
|
"jsx": "preserve",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"experimentalDecorators": true,
|
|
"downlevelIteration": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/app/*": ["frontend/app/*"],
|
|
"@/builder/*": ["frontend/builder/*"],
|
|
"@/util/*": ["frontend/util/*"],
|
|
"@/layout/*": ["frontend/layout/*"],
|
|
"@/store/*": ["frontend/app/store/*"],
|
|
"@/view/*": ["frontend/app/view/*"],
|
|
"@/element/*": ["frontend/app/element/*"],
|
|
"@/shadcn/*": ["frontend/app/shadcn/*"],
|
|
"@/preview/*": ["frontend/preview/*"]
|
|
},
|
|
"lib": ["dom", "dom.iterable", "es6"],
|
|
"allowJs": true,
|
|
"strict": false,
|
|
"noEmit": true
|
|
}
|
|
}
|