Skip to content

Commit

Permalink
feat: add support for module: NodeNext in TS and ESM (#7598)
Browse files Browse the repository at this point in the history
  • Loading branch information
vladfrangu committed Mar 6, 2022
1 parent 0d7e4ed commit 8f1986a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion packages/builders/package.json
Expand Up @@ -16,7 +16,8 @@
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"directories": {
"lib": "src",
Expand Down
3 changes: 2 additions & 1 deletion packages/collection/package.json
Expand Up @@ -16,7 +16,8 @@
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"directories": {
"lib": "src",
Expand Down
3 changes: 2 additions & 1 deletion packages/rest/package.json
Expand Up @@ -16,7 +16,8 @@
"typings": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"directories": {
"lib": "src",
Expand Down
3 changes: 2 additions & 1 deletion packages/voice/package.json
Expand Up @@ -16,7 +16,8 @@
"typings": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"directories": {
"lib": "src",
Expand Down

0 comments on commit 8f1986a

Please sign in to comment.