Преглед изворни кода

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

- 将编译目标从 ES2020 降级为 ES5 以提高浏览器兼容性
yourname пре 1 недеља
родитељ
комит
585f446c7b
1 измењених фајлова са 1 додато и 1 уклоњено
  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",