Skip to content

Commit 2e2ebaf

Browse files
committed
Fix nodemon as we can't use unix path
1 parent 8c4e772 commit 2e2ebaf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nodemon.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"delay": "0",
33
"execMap": {
4-
"ts": "./node_modules/.bin/ts-node"
4+
"ts": "ts-node"
55
},
66
"events": {
7-
"start": "./node_modules/.bin/tslint -c ./tslint.json -t stylish 'src/**/*.ts'",
7+
"start": "tslint -c ./tslint.json -t stylish 'src/**/*.ts'",
88
"restart": "osascript -e 'display notification \"restarting server\" with title \"node.js application\"'"
99
}
1010
}

0 commit comments

Comments
 (0)