Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit 4eee987

Browse files
committed
Fix build script
1 parent c9a89aa commit 4eee987

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
],
1919
"scripts": {
2020
"test": "jest",
21-
"build": "tsc",
21+
"build": "tsc -p tsconfig.lib.json",
2222
"clean": "rm -rf lib",
2323
"prepublishOnly": "npm test && npm run clean && npm run build",
2424
"release": "npm test && npm version patch && git push --follow-tags & npm publish --access public"

tsconfig.lib.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "./tsconfig.base.json",
33
"compilerOptions": {
4-
"outDir": "dist"
4+
"outDir": "dist",
5+
"declarationMap": false
56
},
67
"include": ["src"]
78
}

0 commit comments

Comments
 (0)