We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d91dfbe commit 371e0f8Copy full SHA for 371e0f8
3 files changed
.github/workflows/ci.yml
@@ -49,3 +49,4 @@ jobs:
49
disable_search: true
50
files: coverage/lcov.info
51
token: ${{ secrets.CODECOV_TOKEN }}
52
+ - run: yarn run build
package.json
@@ -12,8 +12,8 @@
12
},
13
"exports": {
14
".": {
15
- "types": "./dist/index.d.mts",
16
- "default": "./dist/index.mjs"
+ "types": "./dist/index.d.ts",
+ "default": "./dist/index.js"
17
}
18
19
"license": "MIT",
tsdown.config.ts
@@ -0,0 +1,6 @@
1
+import { defineConfig } from 'tsdown';
2
+
3
+export default defineConfig({
4
+ external: ['@babel/types'],
5
+ fixedExtension: false,
6
+});
0 commit comments