Files
ComfyUI_frontend/tsconfig.types.json
2026-01-19 16:12:59 -08:00

20 lines
334 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"noEmit": false,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "global.d.ts"],
"exclude": [
"node_modules",
"dist",
"**/*.vue",
"**/*.spec.ts",
"**/*.test.ts",
"src/components/**/*"
]
}