1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Set --enable-source-maps when running Node in nodemon.

This commit is contained in:
Sam Rose 2023-12-19 10:38:06 +00:00
parent eb38012e3d
commit 1c6036cb09
No known key found for this signature in database

View file

@ -9,5 +9,5 @@
],
"ext": "js,ts,json",
"ignore": ["src/**/*.spec.ts", "src/**/*.spec.js", "../*/dist/**/*"],
"exec": "yarn build && node ./dist/index.js"
"exec": "yarn build && node --enable-source-maps ./dist/index.js"
}