Files
threetwo/nodemon.json
2021-04-15 15:08:54 -07:00

13 lines
205 B
JSON

{
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
"node_modules",
"src/client"
],
"watch": [
"src/server"
],
"exec": "tsc -p tsconfig.server.json && node server/",
"ext": "ts"
}