We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d56944f commit 798fedcCopy full SHA for 798fedc
package.json
@@ -15,7 +15,11 @@
15
"test": "echo \"Error: no test specified\" && exit 1",
16
"build:clean": "rm -rf ./dist",
17
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
18
- "build": "npm-run-all build:clean compile "
+ "build": "npm-run-all build:clean compile",
19
+ "watch:cjs": "tsc --watch -p tsconfig.cjs.json",
20
+ "watch:esm": "tsc --watch -p tsconfig.esm.json",
21
+ "watch:types": "tsc --watch -p tsconfig.types.json",
22
+ "watch": "npm-run-all --parallel watch:cjs watch:esm watch:types"
23
},
24
"repository": {
25
"type": "git",
0 commit comments