@complex-suite/plugin
Advanced tools
+3
-0
@@ -10,2 +10,5 @@ <!-- | ||
| ### 5.0.17 | ||
| - fix(tsconfig): 移除 `extends` 外部引用,改为自包含配置,消除 npm 发布后 extends 解析失败导致 TypeScript 降级到默认 target 的问题 | ||
| ### 5.0.16 | ||
@@ -12,0 +15,0 @@ - fix(date): `pushOffset` 入参增加 `if (offset <= 0) return` 校验,阻止 0 和负数导致 setTimeout(fn, 0) 无限紧循环 |
+2
-2
| { | ||
| "name": "@complex-suite/plugin", | ||
| "version": "5.0.16", | ||
| "version": "5.0.17", | ||
| "description": "a complex plugin", | ||
@@ -15,3 +15,3 @@ "type": "module", | ||
| "dependencies": { | ||
| "@complex-suite/utils": "3.0.16" | ||
| "@complex-suite/utils": "3.0.17" | ||
| }, | ||
@@ -18,0 +18,0 @@ "devDependencies": { |
+10
-1
| { | ||
| "extends": "../../tsconfig.base.json", | ||
| "compilerOptions": { | ||
| "target": "ES2016", | ||
| "lib": ["esnext", "dom", "dom.iterable", "scripthost"], | ||
| "module": "ES2020", | ||
| "moduleResolution": "bundler", | ||
| "esModuleInterop": true, | ||
| "forceConsistentCasingInFileNames": true, | ||
| "strict": true, | ||
| "skipLibCheck": true | ||
| }, | ||
| "exclude": ["node_modules", "**/*.test.ts", "vitest.config.ts"] | ||
| } |
25830
1.73%549
1.67%+ Added
- Removed
Updated