refactor: add tsc watch script

This commit adds the `tsc:watch` script that can be used to compile the
typescript code in watch mode.
This commit is contained in:
Rick Staa 2022-07-15 12:12:31 +02:00
parent 569d785639
commit 88959eb554

View File

@ -6,6 +6,7 @@
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",