From eaf284683b9f3b1474ac68d24f87e7390728230c Mon Sep 17 00:00:00 2001 From: Yingchi Long Date: Thu, 27 Jun 2024 21:09:19 +0800 Subject: [PATCH] package.json: add `watch` aliased to `tsc -w` --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index b4b6e70..2254e55 100644 --- a/package.json +++ b/package.json @@ -2,5 +2,8 @@ "devDependencies": { "@types/node": "^20.14.2", "typescript": "^5.5.2" + }, + "scripts": { + "watch": "tsc -w" } }