12345678910111213141516171819202122232425262728 |
- var ignoreRoot = require('ignore-by-default').directories();
- module.exports = {
- restartable: 'rs',
- colours: true,
- execMap: {
- py: 'python',
- rb: 'ruby',
- ts: 'ts-node',
-
-
-
- },
- ignoreRoot: ignoreRoot.map(_ => `**/${_}/**`),
- watch: ['*.*'],
- stdin: true,
- runOnChangeOnly: false,
- verbose: false,
- signal: 'SIGUSR2',
-
-
-
- stdout: true,
- watchOptions: {
- },
- };
|