Skip to content

Commit

Permalink
fix: get back package.json types, as we still export from ./testing
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Jul 24, 2024
1 parent 27291ae commit 89b4df2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@
"cfg/overwrite/.gitignore",
"cfg"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dev-lib": "dist/bin/dev-lib.js",
"up": "dist/bin/up.js",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export {}
2 changes: 1 addition & 1 deletion tsconfig.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"sourceMap": false,
"declaration": false,
"declaration": true,
},
"exclude": ["**/__exclude", "src/test", "src/**/*.test.*"],
}

0 comments on commit 89b4df2

Please sign in to comment.