From a813f7539ac6ed34aabffc5e67e1281e313c71ec Mon Sep 17 00:00:00 2001 From: Torsten Brendgen Date: Thu, 16 Jul 2026 23:02:32 +0200 Subject: [PATCH] =?UTF-8?q?Aktualisiere=20.gitignore=20f=C3=BCr=20verbesse?= =?UTF-8?q?rte=20Ignorierung=20von=20Abh=C3=A4ngigkeiten,=20Build-Ausgaben?= =?UTF-8?q?=20und=20Protokolldateien?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 63 +++++++++++++++++++++++++++++++++--------------------- 1 file changed, 39 insertions(+), 24 deletions(-) diff --git a/.gitignore b/.gitignore index b19bbe1..497988f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,32 +1,47 @@ +# Dependencies and local tools +node_modules/ +.tools/ + +# SPFx build output +lib/ +dist/ +temp/ +release/ +solution/ +sharepoint/solution/ +*.sppkg +*.tgz + +# Test output +coverage/ + +# Generated TypeScript files +*.resx.ts +*.scss.ts + # Logs -logs +logs/ *.log npm-debug.log* +yarn-debug.log* +yarn-error.log* -# Dependency directories -node_modules +# Local environment files +.env +.env.* +!.env.example -# Build generated files -dist -lib -solution -temp -*.sppkg - -# Coverage directory used by tools like istanbul -coverage - -# OSX -.DS_Store - -# Visual Studio files +# Visual Studio and IDE files +.vs/ +.idea/ .ntvs_analysis.dat -.vs -bin -obj +*.suo +*.user +bin/ +obj/ -# Resx Generated Code -*.resx.ts +# Operating system files +.DS_Store +Thumbs.db +Desktop.ini -# Styles Generated Code -*.scss.ts