From 79c0409ddf7e7f611c459e9cb03a67818cb26c3a Mon Sep 17 00:00:00 2001 From: Thibault Seisel Date: Sat, 25 May 2024 20:44:22 +0200 Subject: [PATCH] fix: debug mode not enabled in `npm run dev` --- src/application/files/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/application/files/package.json b/src/application/files/package.json index fe90f57..0719979 100644 --- a/src/application/files/package.json +++ b/src/application/files/package.json @@ -6,7 +6,7 @@ "scripts": { "build": "nest build", "start": "node --enable-source-maps dist/main.js", - "dev": "nest start --watch --debug-0.0.0.0:9229", + "dev": "nest start --watch --debug=0.0.0.0:9229", "lint": "eslint --ext .ts .", "test": "node --experimental-vm-modules ./node_modules/.bin/jest", "prepare": "husky"