17 lines
377 B
JSON
17 lines
377 B
JSON
{
|
|
"restartable": "rs",
|
|
"watch": ["src", ".env"],
|
|
"ext": "js,ts,json",
|
|
"execMap": {
|
|
"js": "node --harmony"
|
|
},
|
|
"ignore": [".git", "node_modules/**/node_modules"],
|
|
"events": {
|
|
"restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
|
|
},
|
|
"verbose": true,
|
|
"env": {
|
|
"NODE_ENV": "development"
|
|
}
|
|
}
|