We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716a040 commit dc32a14Copy full SHA for dc32a14
package.json
@@ -4,6 +4,7 @@
4
"description": "eslint config for vue.js projects",
5
"main": "index.js.mjs",
6
"module": "index.ts.mjs",
7
+ "types": "types.d.ts",
8
"type": "module",
9
"repository": {
10
"type": "git",
types.d.ts
@@ -0,0 +1,14 @@
1
+import type { Linter } from 'eslint';
2
+
3
+declare module 'eslint-config-vuetify' {
+ const config: Linter.Config[];
+ export default config;
+}
+declare module './index.js.mjs' {
11
12
+declare module './index.ts.mjs' {
13
14
0 commit comments