N3RD/JN/CATJS/nodejs/nodemon.json

13 lines
222 B
JSON
Raw Normal View History

2024-05-15 21:57:29 +08:00
{
"restartable": "rs",
"ignore": [".git", "node_modules/", "dist/"],
"watch": ["src/"],
"execMap": {
"js": "node"
},
"env": {
"NODE_ENV": "development"
},
"ext": "js,json"
}