Files
windmill/frontend/tsconfig.json
T
Ruben FiszelandClaude Opus 4.8 9bbed3685d fix: green the frontend check (pin published wasm-asset, fix type errors)
Pin windmill-parser-wasm-asset to the published 1.728.1 (was a file: link to a gitignored, CI-unbuilt pkg-asset). Exclude test files from svelte-check (the parity test reads a backend fixture via node:fs, which the browser app tsconfig has no @types/node for; vitest still runs them). Fix pre-existing branch type errors: drop the unsupported 2nd getScriptByPath arg, cast script.schema to Schema for inferArgs, coerce has_preprocessor to a definite boolean, and wrap the cancelJob handler so it isn't possibly-undefined.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-18 07:17:27 +00:00

28 lines
777 B
JSON

{
"compilerOptions": {
"moduleResolution": "bundler",
"module": "esnext",
"lib": ["es2021", "DOM"],
"target": "esnext",
"outDir": "build",
"noUnusedLocals": true,
"isolatedModules": true,
"resolveJsonModule": true,
"noImplicitAny": false,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"checkJs": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": false,
"strict": true,
"types": ["vite/client"]
},
"include": ["src/**/*.js", "src/**/*.ts", "src/**/*.d.ts", "src/**/*.svelte"],
"exclude": ["src/lib/monaco_workers/*.js", "src/**/*.test.ts", "src/**/*.spec.ts"],
"extends": "./.svelte-kit/tsconfig.json"
}