@mouse_484/eslint-config 5.10.7 → 5.10.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/index.d.ts +5 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mouse_484/eslint-config",
3
3
  "type": "module",
4
- "version": "5.10.7",
4
+ "version": "5.10.9",
5
5
  "author": "mouse_484",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/mouse484/config/tree/main/packages/eslint",
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "@antfu/eslint-config": "^7.7.3",
28
- "baseline-browser-mapping": "^2.10.8",
28
+ "baseline-browser-mapping": "^2.10.9",
29
29
  "eslint-plugin-better-tailwindcss": "^4.3.2",
30
30
  "package-manager-detector": "^1.6.0"
31
31
  },
package/src/index.d.ts CHANGED
@@ -31,8 +31,12 @@ export interface Options extends OptionsConfig, Omit<TypedFlatConfigItem, 'files
31
31
  & OptionsTypeScriptErasableOnly
32
32
  }
33
33
 
34
- export declare function mouse(
34
+ declare function mouse(
35
35
  options?: Options,
36
36
  ...configs: Config[]
37
37
  ): ReturnType<typeof antfu>
38
+
38
39
  export default mouse
40
+ export { mouse }
41
+ export * from './lib/factory'
42
+ export * from '@antfu/eslint-config'