Browse Source

SYSTEM | Ignore some folders

merge-requests/226/head
Vitalik 2 years ago
parent
commit
362ba11601
  1. 2
      ecosystem.config.js
  2. 2
      ecosystem.config.prod.js
  3. 3
      tsconfig.json

2
ecosystem.config.js

@ -5,7 +5,7 @@ module.exports = { @@ -5,7 +5,7 @@ module.exports = {
script: './dist/main.js',
node_args: '-r dotenv/config',
watch: true,
ignore_watch: ['taskme', 'node_modules', '.git', '.husky', 'nginx'],
ignore_watch: ['taskme', 'node_modules', '.git', '.husky', 'nginx', 'documentation'],
},
],
}

2
ecosystem.config.prod.js

@ -5,7 +5,7 @@ module.exports = { @@ -5,7 +5,7 @@ module.exports = {
script: './dist/main.js',
node_args: '-r dotenv/config',
watch: false,
ignore_watch: ['taskme', 'node_modules', '.git', '.husky', 'nginx'],
ignore_watch: ['taskme', 'node_modules', '.git', '.husky', 'nginx', 'documentation'],
},
],
}

3
tsconfig.json

@ -11,5 +11,6 @@ @@ -11,5 +11,6 @@
"outDir": "./dist",
"baseUrl": "./",
"incremental": true
}
},
"exclude": ["./documentation", "./taskme"]
}

Loading…
Cancel
Save