mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-05-16 10:29:36 +00:00
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.
11 lines
212 B
JSON
11 lines
212 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"outDir": "dist/.tsnode",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler"
|
|
},
|
|
"include": ["vite.config.mts"]
|
|
}
|