Skip to content

Instantly share code, notes, and snippets.

@sayem314
Last active April 22, 2021 16:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sayem314/e5f113f6068d4fe74e69572b8e90e24c to your computer and use it in GitHub Desktop.
Save sayem314/e5f113f6068d4fe74e69572b8e90e24c to your computer and use it in GitHub Desktop.
typescript and esm project config for nodemon
{
"restartable": "rs",
"ignore": [".git", "node_modules"],
"verbose": true,
"execMap": {
"ts": "node --loader ts-node/esm"
},
"watch": ["src"],
"env": {
"NODE_ENV": "development"
},
"ext": "js,json,ts"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment