Added nodemon scripts

This commit is contained in:
Alexis
2021-07-23 21:56:44 +02:00
parent a43b5a95c4
commit 681ff2b086
7 changed files with 1932 additions and 51 deletions

13
nodemon.json Normal file
View File

@@ -0,0 +1,13 @@
{
"ignore": [
"src/**/*.test.ts",
"src/**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "npm start",
"ext": "ts"
}