mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-31 05:19:53 +00:00
20 lines
334 B
JSON
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/**/*"
|
|
]
|
|
}
|