Configure nodemon to use node rather than ts-node
This commit is contained in:
parent
2b4e108c6e
commit
9caad9ccb5
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
"watch": ["src"],
|
||||
"ext": "ts",
|
||||
"ignore": ["src/**/*.spec.ts"],
|
||||
"exec": "ts-node -r tsconfig-paths/register src/main.ts"
|
||||
"watch": ["dist"],
|
||||
"ext": "js",
|
||||
"exec": "node -r tsconfig-paths/register -r ts-node/register dist/main.js"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue