Notes/nodemon.json

16 lines
306 B
JSON
Raw Normal View History

2023-04-15 17:31:55 +08:00
{
"restartable": "rs",
"ignore": [".git", "node_modules/**/node_modules", "src/public/"],
"verbose": false,
2024-07-18 23:59:48 +03:00
"exec": "tsx",
2024-09-08 16:04:14 +03:00
"watch": [
"src/",
"translations/"
],
2024-02-17 12:33:20 +02:00
"signal": "SIGTERM",
2023-04-15 17:31:55 +08:00
"env": {
"NODE_ENV": "development"
},
2024-02-17 12:33:20 +02:00
"ext": "ts,js,json"
2023-04-15 17:31:55 +08:00
}