eslint-config-typed 4.0.1 → 4.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -598,7 +598,7 @@ export default [
598
598
  "compilerOptions": {
599
599
  "types": [
600
600
  // "vitest/globals", // Remove this line
601
- "eslint-config-typed/vitest", // Add this line
601
+ "eslint-config-typed/vitest-globals", // Add this line
602
602
  "vitest/importMeta",
603
603
  ],
604
604
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-typed",
3
- "version": "4.0.1",
3
+ "version": "4.0.3",
4
4
  "private": false,
5
5
  "keywords": [
6
6
  "typescript"
@@ -20,8 +20,8 @@
20
20
  "default": "./dist/entry-point.mjs"
21
21
  }
22
22
  },
23
- "./vitest": {
24
- "types": "./src/plugins/vitest-coding-style/rules/vitest-coding-style.d.mts"
23
+ "./vitest-globals": {
24
+ "types": "./vitest-globals.d.mts"
25
25
  }
26
26
  },
27
27
  "module": "./dist/entry-point.mjs",
@@ -30,7 +30,8 @@
30
30
  "src",
31
31
  "dist",
32
32
  "README.md",
33
- "LICENSE"
33
+ "LICENSE",
34
+ "vitest-globals.d.mts"
34
35
  ],
35
36
  "scripts": {
36
37
  "apply-type-transformations": "tsx ./scripts/gen-eslint-rules/codemod/apply-type-transformations.mts",
@@ -103,7 +104,7 @@
103
104
  "is-glob": "^4.0.3",
104
105
  "is-immutable-type": "5.0.1",
105
106
  "micromatch": "^4.0.8",
106
- "ts-data-forge": "^5.1.0",
107
+ "ts-data-forge": "^6.0.0",
107
108
  "tsutils": "3.21.0",
108
109
  "typescript-eslint": "8.48.0"
109
110
  },
@@ -139,10 +140,10 @@
139
140
  "markdownlint": "^0.39.0",
140
141
  "markdownlint-cli2": "^0.19.1",
141
142
  "npm-run-all2": "^8.0.4",
142
- "prettier": "^3.6.2",
143
+ "prettier": "^3.7.1",
143
144
  "prettier-plugin-jsdoc": "^1.5.0",
144
145
  "prettier-plugin-organize-imports": "^4.3.0",
145
- "prettier-plugin-packagejson": "^2.5.19",
146
+ "prettier-plugin-packagejson": "^2.5.20",
146
147
  "react": "^19.2.0",
147
148
  "rollup": "^4.53.3",
148
149
  "semantic-release": "^25.0.2",
@@ -2,6 +2,8 @@
2
2
  /* eslint-disable @typescript-eslint/no-restricted-types */
3
3
  /* eslint-disable @typescript-eslint/consistent-type-imports */
4
4
 
5
+ // Copied from https://github.com/vitest-dev/vitest/blob/v4.0.14/packages/vitest/globals.d.ts and replaced `assert`
6
+
5
7
  declare global {
6
8
  const assert: OverriddenAssert;
7
9