From d8e9f624c3ac2bda67bd380e755f7e60828ef8e9 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Tue, 13 May 2025 14:29:50 +0200 Subject: [PATCH] testapp: update start script path to point to the correct index file in testapp --- testapp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testapp/package.json b/testapp/package.json index 45f68e7..d99ab6d 100644 --- a/testapp/package.json +++ b/testapp/package.json @@ -6,7 +6,7 @@ "test": "echo \"Error: no test specified\" && exit 1", "build": "tsc --rootDir ../", "build:watch": "tsc --watch", - "start": "node dist/index.js", + "start": "node dist/testapp/src/index.js", "dev:server": "ts-node-dev --respawn --watch src,public/ts,public/views src/index.ts", "dev": "concurrently \"npm:watch:client\" \"npm run dev:server\" --kill-others", "build:client": "tsc -p tsconfig.client.json",