From 633349ad75b96041df64db1110b0a3d12b9e483f Mon Sep 17 00:00:00 2001 From: Max Isom Date: Thu, 1 Apr 2021 15:19:14 -0400 Subject: [PATCH] Fix nodemon config --- nodemon.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodemon.json b/nodemon.json index fbe45a6..ee60dc6 100644 --- a/nodemon.json +++ b/nodemon.json @@ -1,6 +1,6 @@ { "ignore": ["**/*.test.ts", "**/*.spec.ts", ".git", "node_modules"], - "watch": ["src"], + "watch": ["dist"], "exec": "npm start", - "ext": "ts" + "ext": "js" }