Skip to content

Commit

Permalink
Merge pull request #151 from goveo/development
Browse files Browse the repository at this point in the history
Remove unreachable d.ts references
  • Loading branch information
ybrusentsov authored Feb 3, 2024
2 parents ea6f1c6 + 01c084b commit 9eeff6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"exports": {
".": {
"import": {
"types": "./build/index.d.ts",
"types": "./build/index.d.mts",
"default": "./build/index.mjs"
},
"require": {
Expand All @@ -34,12 +34,13 @@
},
"types": "./build/index.d.ts",
"main": "./build/index.js",
"module": "./build/index.mjs",
"files": [
"build/**/*"
],
"scripts": {
"cm": "cz",
"build": "tsup && tsc --emitDeclarationOnly",
"build": "tsup",
"test": "jest",
"test-storybook": "test-storybook",
"test:coverage": "jest --coverage",
Expand Down
1 change: 1 addition & 0 deletions tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ export default defineConfig({
minify: true,
format: ['esm', 'cjs'],
outDir: 'build',
dts: true,
});

0 comments on commit 9eeff6b

Please sign in to comment.