mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 06:19:58 +00:00
- Add src/types/**/*.d.ts and global.d.ts to include array - Use vue-tsc for typecheck:browser to match main typecheck - Fixes ~160 src/ type errors in browser test compilation Amp-Thread-ID: https://ampcode.com/threads/T-019c16af-3867-74d9-9242-e3fa8e17947e Co-authored-by: Amp <amp@ampcode.com>
12 lines
288 B
JSON
12 lines
288 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
/* Test files should not be compiled */
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["**/*.ts", "../src/types/**/*.d.ts", "../global.d.ts"]
|
|
}
|