From e25b4d8f618ebe9c63152076f1a9ef7ffe781f9f Mon Sep 17 00:00:00 2001 From: mrjones-plip Date: Fri, 19 Jan 2024 13:14:49 -0800 Subject: [PATCH] point package.json at correct index file for start call --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b29d9625..fc4ff589 100644 --- a/package.json +++ b/package.json @@ -43,7 +43,7 @@ "cp-package-json": "cp package.json ./src", "test": "npx ts-mocha test/{,**}/*.spec.ts", "build": "npm run cp-package-json && npx tsc", - "start": "node dist/index.js", + "start": "node src/index.ts", "dev": "tsc-watch --onSuccess \"node dist/index.js\"", "publish": "node scripts/publish.js" },