Files
Wand-Enhancer-k1tbyte/web-panel/bridge/tsconfig.json
T
kitbyte f798714f8d chore(build): enforce lint, type-check and dist invariants in build and CI
Add verify-dist.mjs (node --check on bundles, dev-only payload guard).
Wire lint into build.ps1 and type-check both web and bridge in pnpm build.
Drop noImplicitAny override and switch bridge to Bundler resolution.
Run CI on pull_request and push to master.
2026-08-29 16:55:07 +03:00

16 lines
464 B
JSON
Vendored

{
"extends": "../tsconfig.json",
"compilerOptions": {
"lib": ["ES2022"],
// Bundled by esbuild (bridge/build.mjs), not resolved by Node's ESM loader, so
// type-check under the same model the bundler uses.
"module": "ESNext",
"moduleResolution": "Bundler",
// The injected renderer scripts are plain .js by design; tests import them directly.
"allowJs": true,
"checkJs": false,
"types": ["node"]
},
"include": ["src"]
}