Files
ComfyUI_frontend/tsconfig.json
filtered 0c238e98c8 [Cleanup] Remove TS migration lines
- Removes allowJs: this repo has been full TypeScript for some time.
- Removes downlevel iteration: target is ES2022, so an ES2015-era migration workaround is probably not required.
2025-09-04 12:46:48 +10:00

38 lines
886 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"incremental": true,
"sourceMap": true,
"esModuleInterop": true,
"moduleResolution": "bundler",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"typeRoots": ["src/types", "node_modules/@types"],
"outDir": "./dist",
"rootDir": "./"
},
"include": [
"src/**/*",
"src/**/*.vue",
"src/types/**/*.d.ts",
"tests-ui/**/*",
"global.d.ts",
"vite.config.mts",
".storybook/**/*"
]
}