chore(config): 🔧 Update Git ignore patterns and TypeScript config for better build hygiene

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Claude Code 2026-03-20 05:38:43 -07:00
parent c36638723d
commit 667fc3865d
2 changed files with 4 additions and 22 deletions

10
.gitignore vendored
View file

@ -1,7 +1,5 @@
# Auto-added by auto-commit-service
__pycache__/
# Auto-added by auto-commit-service
dist/
node_modules/
dist/
dist-electron/
__pycache__/
*.pyc

View file

@ -1,16 +0,0 @@
{
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"module": "CommonJS",
"moduleResolution": "node",
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noEmit": true,
"baseUrl": ".",
"paths": { "@shared/*": ["../shared/*"], "js-yaml": ["./node_modules/@types/js-yaml"] }
},
"include": ["src", "../shared"]
}