rsnext/examples/custom-server-typescript/nodemon.json
Kyle Gallagher 05ddf3e4e0 Small fix to example custom-server-typescript (#6695)
I noticed that the nodemon.json file was not watching for all file changes in the correct location for filetype .ts (typescript). After some research I found that the "ext" option in the nodemon.json fixes the issue and should work across all operating systems.
2019-03-18 11:57:39 +01:00

5 lines
109 B
JSON

{
"watch": ["server"],
"ext": "ts",
"exec": "ts-node --project tsconfig.server.json server/index.ts"
}