Skip to content

Instantly share code, notes, and snippets.

@rvanzon
Created April 11, 2016 14:17
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 rvanzon/a43c606cd447f83c4d848525a6b201ac to your computer and use it in GitHub Desktop.
Save rvanzon/a43c606cd447f83c4d848525a6b201ac to your computer and use it in GitHub Desktop.
Sails - autoreload.js
// config/autoreload.js
module.exports.autoreload = {
active: true,
usePolling: false,
dirs: [
"api/models",
"api/controllers",
"api/services",
"config/locales"
],
ignored: [
// Ignore all files with .ts extension
"**.ts"
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment