Files
ComfyUI_frontend/packages/workflow-validation/tsconfig.node.json
Glary-Bot 958b7eb486 fix(validation): use tsconfig project reference instead of allowDefaultProject
Address Christian's review: instead of widening eslint's
`allowDefaultProject` list, give the package's `vite.config.mts`
its own `tsconfig.node.json` (composite reference) and let
typescript-eslint's `projectService` discover it via the package's
`tsconfig.json` references. Reverts the eslint config change.
2026-05-04 21:22:33 +00:00

11 lines
212 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"composite": true,
"outDir": "dist/.tsnode",
"module": "ESNext",
"moduleResolution": "bundler"
},
"include": ["vite.config.mts"]
}