Answers for "typescript node_modules gitignore"

0

typescript ignore node_modules

// tsconfig.json
"exclude": ["node_modules"]
Posted by: Guest on June-18-2021
11

how to gitignore node modules

touch .gitignore  //to create a .gitignore if you dont have one
echo "node_modules/" >> .gitignore //this adds node_modules to gitignore
cat .gitignore //checks what files you have in your gitignore
Posted by: Guest on April-14-2021

Code answers related to "typescript node_modules gitignore"

Browse Popular Code Answers by Language