From c735c8fd89d3c7729e84b9931c5f3a4f41fda875 Mon Sep 17 00:00:00 2001 From: k-taro56 <121674121+k-taro56@users.noreply.github.com> Date: Fri, 31 May 2024 01:02:00 +0900 Subject: [PATCH] chore: update start script to use "./dest/index.js" --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f1ca99e..0600b06 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "prepare": "husky", "dev": "nodemon", "build": "tsc", - "start": "node dist/index.js", + "start": "node dest/index.js", "check": "biome check .", "format": "biome check --apply ." },