build: Add watch script to usb module

This commit is contained in:
Róbert Kiss
2017-11-02 20:03:27 +01:00
parent 009dd8e963
commit e394f8483e
3 changed files with 4 additions and 1 deletions

1
packages/usb/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
dist/

View File

@@ -5,7 +5,8 @@
"main": "UhkConnection.js",
"license": "GPL-3.0",
"scripts": {
"build": "tsc"
"build": "tsc",
"watch": "tsc -w"
},
"devDependencies": {
"@types/node": "8.0.28",

View File

@@ -8,6 +8,7 @@
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2016",
"outDir": "./dist",
"typeRoots": [
"node_modules/@types"
],