Skip to content

Commit

Permalink
fix: exports meta
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Oct 13, 2023
1 parent d0c3eac commit c1d4d7a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion packages/eslint-plugin-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"exports": {
".": {
"types": "./dts/index.d.ts",
"require": "./dist/index.js"
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./define-config-support": {
"types": "./dts/define-config-support.d.ts"
Expand Down
3 changes: 2 additions & 1 deletion packages/eslint-plugin-jsx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"exports": {
".": {
"types": "./dts/index.d.ts",
"require": "./dist/index.js"
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./define-config-support": {
"types": "./dts/define-config-support.d.ts"
Expand Down
3 changes: 2 additions & 1 deletion packages/eslint-plugin-ts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"exports": {
".": {
"types": "./dts/index.d.ts",
"require": "./dist/index.js"
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./define-config-support": {
"types": "./dts/define-config-support.d.ts"
Expand Down
3 changes: 2 additions & 1 deletion packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"exports": {
".": {
"types": "./dts/index.d.ts",
"require": "./dist/index.js"
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./define-config-support": {
"types": "./dts/define-config-support.d.ts"
Expand Down

0 comments on commit c1d4d7a

Please sign in to comment.