@vitest/eslint-plugin 1.6.8 → 1.6.9

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/dist/index.cjs CHANGED
@@ -4,7 +4,7 @@ let node_path = require("node:path");
4
4
  let _typescript_eslint_scope_manager = require("@typescript-eslint/scope-manager");
5
5
 
6
6
  //#region package.json
7
- var version = "1.6.8";
7
+ var version = "1.6.9";
8
8
 
9
9
  //#endregion
10
10
  //#region src/utils/index.ts
package/dist/index.mjs CHANGED
@@ -4,7 +4,7 @@ import { isAbsolute, posix } from "node:path";
4
4
  import { DefinitionType } from "@typescript-eslint/scope-manager";
5
5
 
6
6
  //#region package.json
7
- var version = "1.6.8";
7
+ var version = "1.6.9";
8
8
 
9
9
  //#endregion
10
10
  //#region src/utils/index.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vitest/eslint-plugin",
3
- "version": "1.6.8",
3
+ "version": "1.6.9",
4
4
  "license": "MIT",
5
5
  "description": "ESLint plugin for Vitest",
6
6
  "repository": "vitest-dev/eslint-plugin-vitest",
@@ -15,11 +15,15 @@
15
15
  "author": "Verite Mugabo <https://veritemugabo.com/>",
16
16
  "type": "module",
17
17
  "main": "./dist/index.cjs",
18
- "module": "./dist/index.js",
19
- "types": "./dist/index.d.ts",
18
+ "module": "./dist/index.mjs",
19
+ "types": "./dist/index.d.mts",
20
20
  "exports": {
21
21
  ".": {
22
- "import": "./dist/index.js",
22
+ "types": {
23
+ "import": "./dist/index.d.mts",
24
+ "require": "./dist/index.d.cts"
25
+ },
26
+ "import": "./dist/index.mjs",
23
27
  "require": "./dist/index.cjs"
24
28
  },
25
29
  "./package.json": "./package.json"