apple_cursor/nodemon.json

14 lines
253 B
JSON
Raw Normal View History

2020-07-22 02:51:05 -04:00
{
"restartable": "rs",
"ignore": [".git", "node_modules/**/node_modules"],
"verbose": true,
"execMap": {
"ts": "node --require ts-node/register"
},
"watch": ["src/"],
"env": {
"NODE_ENV": "development"
},
"ext": "js,json,ts"
}