We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d71d70f commit 7295110Copy full SHA for 7295110
2 files changed
packages/cli/package.json
@@ -8,6 +8,13 @@
8
"bin": {
9
"rushcms": "./dist/index.js"
10
},
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.mjs",
15
+ "require": "./dist/index.js"
16
+ }
17
+ },
18
"repository": {
19
"type": "git",
20
"url": "git+https://github.com/rush-cms/sdk.git",
packages/cli/tsup.config.ts
@@ -7,5 +7,6 @@ export default defineConfig({
7
splitting: false,
sourcemap: true,
clean: true,
- minify: true
+ minify: true,
+ shims: true
})
0 commit comments