From 7a39a76663ee566307ab02242e07926dc1907253 Mon Sep 17 00:00:00 2001 From: Shunsuke Hayashi Date: Mon, 26 Jan 2026 06:34:59 +0900 Subject: [PATCH] chore: ignore TypeScript build artifacts in src/ Add patterns for *.js, *.js.map, *.d.ts, and *.d.ts.map files in src/ directory to exclude TypeScript compilation output from version control. Co-Authored-By: Claude --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index b2c1de9a2..e1dcd0188 100644 --- a/.gitignore +++ b/.gitignore @@ -69,3 +69,10 @@ USER.md # local tooling .serena/ + +# TypeScript build artifacts (output from TS compilation) +src/**/*.js +src/**/*.js.map +src/**/*.d.ts +src/**/*.d.ts.map +