From 07d1143b7bef4351f9c57097a03c90e477f77764 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sun, 1 Mar 2026 21:09:59 -0500 Subject: [PATCH] chore(gitignore): ignore JavaScript sourcemap files Add *.map pattern to .gitignore to exclude JavaScript sourcemap files from version control. These files are generated during the build process and are not needed in the repository, matching the existing pattern for TypeScript declaration maps (*.d.ts.map). This prevents accidentally committing generated sourcemap files like collections.js.map that provide debugging information but are not necessary for deployment or source control. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1cf6058..b0f6d4e 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ package-lock.json # TypeScript *.tsbuildinfo *.d.ts.map +*.map # Compiled JavaScript (keep .ts source, ignore .js) # Exception: Downloaded documentation dependencies