Files
ComfyUI_frontend/tsconfig.types.json
Chenlei Hu 05fab91bda Build comfyui-frontend-types library (#1725)
* Install vite-plugin-dts

* Explicitly type workflowStore

* Working rollup

* Hide diff type

* Inline primevue toast mesage types

* Add prepare-types script to generate package.json for type package

* Add global declaration

* Add publish types Github action

* Update litegraph

* Add @comfyorg to package name
2024-11-28 11:21:19 -05:00

22 lines
345 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/**/*"
]
}