@theholocron/eslint-config 7.2.1 → 7.2.2

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.
@@ -1,7 +1,7 @@
1
1
  //#region bundles/library.d.ts
2
2
  declare function library(): ({
3
3
  readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
4
- } | import("typescript-eslint").CompatibleConfig | {
4
+ } | {
5
5
  name: string;
6
6
  languageOptions: {
7
7
  globals: {
@@ -1208,6 +1208,6 @@ declare function library(): ({
1208
1208
  XSLTProcessor: false;
1209
1209
  };
1210
1210
  };
1211
- })[];
1211
+ } | import("typescript-eslint").CompatibleConfig)[];
1212
1212
  //#endregion
1213
1213
  export { library };
@@ -1,7 +1,7 @@
1
1
  //#region bundles/node-app.d.ts
2
2
  declare function nodeApp(): ({
3
3
  readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
4
- } | import("typescript-eslint").CompatibleConfig | {
4
+ } | {
5
5
  name: string;
6
6
  languageOptions: {
7
7
  globals: {
@@ -1208,6 +1208,6 @@ declare function nodeApp(): ({
1208
1208
  XSLTProcessor: false;
1209
1209
  };
1210
1210
  };
1211
- })[];
1211
+ } | import("typescript-eslint").CompatibleConfig)[];
1212
1212
  //#endregion
1213
1213
  export { nodeApp };
@@ -1,7 +1,7 @@
1
1
  //#region bundles/react-app.d.ts
2
2
  declare function reactApp(): ({
3
3
  readonly rules: Readonly<import("eslint").Linter.RulesRecord>;
4
- } | import("typescript-eslint").CompatibleConfig | {
4
+ } | {
5
5
  name: string;
6
6
  languageOptions: {
7
7
  globals: {
@@ -1208,6 +1208,6 @@ declare function reactApp(): ({
1208
1208
  XSLTProcessor: false;
1209
1209
  };
1210
1210
  };
1211
- })[];
1211
+ } | import("typescript-eslint").CompatibleConfig)[];
1212
1212
  //#endregion
1213
1213
  export { reactApp };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/eslint-config",
3
- "version": "7.2.1",
3
+ "version": "7.2.2",
4
4
  "description": "A ESLint configuration for writing well-formed Javascript within the Galaxy.",
5
5
  "homepage": "https://github.com/theholocron/configs/tree/main/packages/eslint-config#readme",
6
6
  "bugs": "https://github.com/theholocron/configs/issues",
@@ -28,8 +28,8 @@
28
28
  "@eslint/js": "^10.0.0",
29
29
  "globals": "^17.0.0",
30
30
  "typescript-eslint": "^8.0.0",
31
- "@theholocron/tsconfig": "7.2.1",
32
- "@theholocron/vitest-config": "7.2.1"
31
+ "@theholocron/tsconfig": "7.2.2",
32
+ "@theholocron/vitest-config": "7.2.2"
33
33
  },
34
34
  "exports": {
35
35
  ".": {