Fixed nodemon apps not quiting after STRG-C in terminal
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
"helpers": "./helper"
|
"helpers": "./helper"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "nodemon",
|
"dev": "nodemon --signal SIGINT",
|
||||||
"build": "tsc"
|
"build": "tsc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"watch": ["."],
|
"watch": ["."],
|
||||||
"ext": "ts",
|
"ext": "ts",
|
||||||
"exec": "tsx index.ts"
|
"exec": "tsx index.ts"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
"helpers": "./helper"
|
"helpers": "./helper"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "nodemon",
|
"dev": "nodemon --signal SIGINT",
|
||||||
"build": "tsc"
|
"build": "tsc"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
Reference in New Issue
Block a user