mirror of
https://github.com/k1tbyte/Wand-Enhancer.git
synced 2026-08-31 22:02:01 +00:00
f798714f8d
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.
16 lines
464 B
JSON
Vendored
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"]
|
|
}
|