mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-09 08:03:50 +00:00
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>
28 lines
777 B
JSON
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"
|
|
}
|