feat: remove downlevelIteration from Rollup tsconfig override (#905)

Browser UMD/min bundles already compile with ES2020 on next; drop the
ES5-only downlevelIteration override from rollup.config.mjs.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Yang Jun
2026-07-10 23:16:56 +08:00
co-authored by Cursor
parent 9481008f2b
commit 6111eb6bd9
+1 -2
View File
@@ -23,8 +23,7 @@ const tsconfig = (target) => ({
compilerOptions: {
target,
module: 'ES2015',
rootDir: 'src',
downlevelIteration: true
rootDir: 'src'
}
}
})