server: Bring back nodemon.json

This commit is contained in:
Elian Doran 2024-05-11 10:18:20 +03:00
parent 78791024bc
commit c8c9ecc0a3
No known key found for this signature in database

View File

@ -1,12 +1,17 @@
{
"restartable": "rs",
"ignore": [".git", "node_modules/**/node_modules", "src/public/"],
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": false,
"exec": "ts-node",
"watch": ["src/"],
"watch": [
"src/"
],
"signal": "SIGTERM",
"env": {
"NODE_ENV": "development"
},
"ext": "ts,js,json"
}
}