chore: add .gitignore, set tsc noEmit so build doesn't drop .js next to sources

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Kavi 2026-04-28 02:05:37 -04:00
parent fc7420eb8f
commit b92d44778a
2 changed files with 8 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
node_modules/
dist/
*.tsbuildinfo
.DS_Store
.env
.env.local
.vite/

View File

@ -11,6 +11,7 @@
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"noEmit": true,
"paths": { "@/*": ["./src/*"] }
},
"include": ["src"]