标签: nodemon
我有一个./src文件夹,我想用nodemon监视它
./src
nodemon
$> nodemon -e ts -w './src/**/*.ts' --exec ....
现在,我想忽略./src中的单个文件。无论我做什么,我都不能忽略./src中的任何文件:(
$> DEBUG=nodemon:watch nodemon -e ts -i './src/gen.ts' -w './src/**/*.ts' --exec ....
这样可能吗?