From 543bcdaf9c53be929a814608ff6a3a5fa3ed4a48 Mon Sep 17 00:00:00 2001 From: Joost Agterhoek Date: Thu, 17 Jul 2025 21:08:37 +0200 Subject: [PATCH] more complete react gitignore --- .gitignore | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4d29575..b715f7c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,30 @@ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies -/node_modules -/.pnp -.pnp.js +node_modules/ +jspm_packages/ + +# dependency directories +dist/ + +# Typescript v1 declaration files +typings/ + +# optional npm cache directory +.npm + +# optional eslint cache +.eslintcache + +# output of 'npm pack' +*.tgz # testing /coverage # production /build +build/Release # misc .DS_Store @@ -18,6 +33,10 @@ .env.test.local .env.production.local +# Logs +logs +*.log npm-debug.log* yarn-debug.log* yarn-error.log* +