Skip to content

Instantly share code, notes, and snippets.

@olygood
Created November 28, 2023 14:56
Show Gist options
  • Save olygood/9337eb9e439bc0853e365a7eabfd4fc5 to your computer and use it in GitHub Desktop.
Save olygood/9337eb9e439bc0853e365a7eabfd4fc5 to your computer and use it in GitHub Desktop.
tout les fichiers .json ici
//configure json et explication
//package.json
//ext: s'occupe des fichiers .js et .json si il change relance le server nodemon
//watch s'occupe des dossier
"nodemonConfig": {
"verbose": true,
"watch": ["src", "config"],
"ext": "js,json",
"scripts": {
"start": "nodemon your_main_file.js",
"start": "nodemon --watch src/**/*.js --watch src/**/*.json your_main_file.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment