chore(git): add .gitignore file to exclude node_modules and package files

This change introduces a .gitignore file to prevent node_modules, package.json, and package-lock.json from being tracked by Git. This helps keep the repository clean by excluding directories and files that are generated or unnecessary for version control.
This commit is contained in:
Christian Weimann
2025-02-09 04:38:17 +01:00
parent c5ed9c9c44
commit 475d238ea3

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
node_modules/
package.json
package-lock.json