@isentinel/eslint-config 5.0.0-beta.10 → 5.0.0-beta.11

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.
Files changed (2) hide show
  1. package/dist/index.mjs +4 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -3543,7 +3543,10 @@ async function test(options = {}) {
3543
3543
  ...stylistic !== false ? { "vitest/padding-around-all": "warn" } : {},
3544
3544
  ...overrides
3545
3545
  },
3546
- settings: { vitest: { typecheck: vitestOptions.typecheck ?? false } }
3546
+ settings: {
3547
+ ...useJestExtended ? { jest: { globalPackage: "vitest" } } : {},
3548
+ vitest: { typecheck: vitestOptions.typecheck ?? false }
3549
+ }
3547
3550
  });
3548
3551
  }
3549
3552
  return configs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isentinel/eslint-config",
3
- "version": "5.0.0-beta.10",
3
+ "version": "5.0.0-beta.11",
4
4
  "description": "iSentinel's ESLint config",
5
5
  "keywords": [
6
6
  "eslint-config",
@@ -131,7 +131,7 @@
131
131
  "type-fest": "5.4.4",
132
132
  "typescript": "5.9.3",
133
133
  "unplugin-unused": "0.5.7",
134
- "@isentinel/eslint-config": "5.0.0-beta.10"
134
+ "@isentinel/eslint-config": "5.0.0-beta.11"
135
135
  },
136
136
  "peerDependencies": {
137
137
  "@vitest/eslint-plugin": "^1.6.4",