waveterm/tsconfig.json
Copilot ecccad6ea1
TabBar full preview + much more FE mocking via WaveEnv to enable it (#3028)
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>
2026-03-11 13:54:12 -07:00

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
}
}