Created
November 28, 2023 14:56
-
-
Save olygood/9337eb9e439bc0853e365a7eabfd4fc5 to your computer and use it in GitHub Desktop.
tout les fichiers .json ici
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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