Notes/nodemon.json

13 lines
262 B
JSON
Raw Normal View History

2023-04-15 17:31:55 +08:00
{
2025-01-09 18:07:02 +02:00
"restartable": "rs",
"ignore": [".git", "node_modules/**/node_modules", "src/public/"],
"verbose": false,
"exec": "tsx",
"watch": ["src/", "translations/"],
"signal": "SIGTERM",
"env": {
"NODE_ENV": "development"
},
"ext": "ts,js,json"
2023-04-15 17:31:55 +08:00
}