Files
ComfyUI_frontend/tsconfig.types.json
snomiao e933b5c357 [feat] Enable declarationMap for source file mapping in API changelog
Generate declaration maps to enable mapping from generated .d.ts files
back to source files. This will allow the API changelog to link to actual
source code locations instead of generated declaration files.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 17:21:30 +00:00

23 lines
373 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/**/*"
]
}