From b92d44778acd52716c6a366131ab0515ea38804a Mon Sep 17 00:00:00 2001 From: Kavi Date: Tue, 28 Apr 2026 02:05:37 -0400 Subject: [PATCH] chore: add .gitignore, set tsc noEmit so build doesn't drop .js next to sources Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 7 +++++++ tsconfig.json | 1 + 2 files changed, 8 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f66e69b --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +node_modules/ +dist/ +*.tsbuildinfo +.DS_Store +.env +.env.local +.vite/ diff --git a/tsconfig.json b/tsconfig.json index b320324..0e57d86 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,6 +11,7 @@ "noFallthroughCasesInSwitch": true, "resolveJsonModule": true, "skipLibCheck": true, + "noEmit": true, "paths": { "@/*": ["./src/*"] } }, "include": ["src"]