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", "restartable": "rs",
"ignore": [".git", "node_modules/**/node_modules", "src/public/"], "ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": false, "verbose": false,
"exec": "ts-node", "exec": "ts-node",
"watch": ["src/"], "watch": [
"src/"
],
"signal": "SIGTERM", "signal": "SIGTERM",
"env": { "env": {
"NODE_ENV": "development" "NODE_ENV": "development"
}, },
"ext": "ts,js,json" "ext": "ts,js,json"
} }