Skip to content

Commit

Permalink
fix: type resolution for node10
Browse files Browse the repository at this point in the history
  • Loading branch information
sxzz committed Jul 7, 2023
1 parent ae4305d commit f70ea9b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./*": "./*",
"./nuxt": {
"types": "./dist/nuxt.d.ts",
"require": "./dist/nuxt.cjs",
Expand Down Expand Up @@ -72,15 +71,17 @@
"types": "./dist/esbuild.d.ts",
"require": "./dist/esbuild.cjs",
"import": "./dist/esbuild.js"
}
},
"./*": "./*"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*"
"./dist/*",
"./*"
]
}
},
Expand Down

0 comments on commit f70ea9b

Please sign in to comment.