Sign In

@complex-suite/plugin

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@complex-suite/plugin - npm Package Compare versions

Comparing version
5.0.16
to
5.0.17
+3
-0
history.md

@@ -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": {

{
"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"]
}