From e0e6d15cbb60e689d70c98d6eaa1caaf05f57ee2 Mon Sep 17 00:00:00 2001 From: sno Date: Sun, 26 Oct 2025 13:30:13 +0900 Subject: [PATCH] [refactor] remove downlevelIteration from tsconfig (#6279) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove downlevelIteration compiler option as it's no longer needed with ES2023 target. picked from - [\[Cleanup\] Remove TS migration lines from tsconfig by webfiltered · Pull Request #5330 · Comfy-Org/ComfyUI_frontend]( https://github.com/Comfy-Org/ComfyUI_frontend/pull/5330 ) 🤖 Generated with [Claude Code](https://claude.com/claude-code) ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6279-refactor-remove-downlevelIteration-from-tsconfig-2976d73d3650819a9d4be716006e8b85) by [Unito](https://www.unito.io) Co-authored-by: Claude --- tsconfig.json | 1 - 1 file changed, 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index ba0d3de22..1a2658b90 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,7 +21,6 @@ "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, - "downlevelIteration": true, "noImplicitOverride": true, "allowJs": true, "verbatimModuleSyntax": true,