Browse Source

♻️ refactor(tsconfig): 调整 TypeScript 编译目标版本

- 将编译目标从 ES2020 降级为 ES5 以提高浏览器兼容性
yourname 1 tuần trước cách đây
mục cha
commit
585f446c7b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      mini-ui-packages/mini-shared-ui-components/tsconfig.json

+ 1 - 1
mini-ui-packages/mini-shared-ui-components/tsconfig.json

@@ -1,6 +1,6 @@
 {
   "compilerOptions": {
-    "target": "ES2020",
+    "target": "ES5",
     "module": "ESNext",
     "lib": ["ES2020", "DOM"],
     "moduleResolution": "bundler",