Nodemon ts-node无法监视JavaScript更改

时间:2019-08-19 17:47:06

标签: javascript node.js typescript nodemon ts-node

这是我的nodemon.json:

{
  "watch": ["src"],
  "ext": "ts",
  "ignore": ["src/**/*.spec.ts"],
  "exec": "ts-node ./src/index.ts"
}

我的项目同时包含js和ts文件,我也希望它同时监视js文件中的更改,但仅在更改index.ts时重新启动

1 个答案:

答案 0 :(得分:2)

尝试以下nodemon.json

{
  "watch": ["src"],
  "ext": "js,ts",
  "ignore": ["src/**/*.spec.ts"],
  "exec": "ts-node ./src/index.ts"
}