mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-14 09:27:41 +00:00
Resolve conflict in knip.config.ts by keeping demo-snapshots/** ignore entry alongside new main entries.
21 lines
362 B
JSON
21 lines
362 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noEmit": false,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "global.d.ts"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"**/*.vue",
|
|
"**/*.spec.ts",
|
|
"**/*.test.ts",
|
|
"src/components/**/*"
|
|
]
|
|
}
|