Skip to content

Commit 6bae42b

Browse files
committed
fix
1 parent ce3dc18 commit 6bae42b

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
"license": "Apache-2.0",
1919
"sideEffects": false,
2020
"exports": {
21-
".": "./dist/index.js",
21+
".": "./dist/index.mjs",
2222
"./package.json": "./package.json"
2323
},
24-
"main": "./dist/index.js",
25-
"module": "./dist/index.js",
26-
"types": "./dist/index.d.ts",
24+
"main": "./dist/index.mjs",
25+
"module": "./dist/index.mjs",
26+
"types": "./dist/index.d.mts",
2727
"files": [
2828
"dist"
2929
],

tooling/tsconfig.build.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"extends": "../tsconfig.json",
33
"compilerOptions": {
44
"declaration": true,
5-
"declarationMap": false,
65
"emitDeclarationOnly": true,
76
"noEmit": false
87
}

tooling/tsdown.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,4 @@ export default defineConfig({
44
target: 'esnext',
55
tsconfig: './tooling/tsconfig.build.json',
66
exports: true,
7-
sourcemap: true,
8-
dts: true,
9-
outExtensions: () => ({ js: '.js', dts: '.d.ts' }),
107
});

0 commit comments

Comments
 (0)