From b20dcb1f03373c6be925010198e0ae21dc647d4d Mon Sep 17 00:00:00 2001 From: Claude Code Date: Wed, 25 Mar 2026 22:50:12 -0700 Subject: [PATCH] =?UTF-8?q?chore(config):=20=F0=9F=94=A7=20Update=20build?= =?UTF-8?q?=20and=20dev=20tooling=20configs=20to=20ignore=20extra=20artifa?= =?UTF-8?q?cts=20and=20refine=20TypeScript=20compiler=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .gitignore | 35 +++++++++++++++++++++++++++++++++++ tsconfig.json | 9 +++++++++ 2 files changed, 44 insertions(+) create mode 100644 .gitignore create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..df83daed --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# Secrets & Vault +vault/ +.env +.env.local +.env*.local + +# Dependencies +node_modules/ +.pnpm-store/ + +# Build & Runtime +dist/ +.turbo/ +.vite-cache/ +*.log + +# Testing +test-reports/ +coverage/ +playwright-report/ + +# IDE & OS +.vscode/ +.idea/ +*.swp +.DS_Store + +# Generated +.playwright-mcp/ +.cache/ + +# Misc +*.tmp +*.bak +__pycache__/ diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..eb50c87c --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "./codebase/tsconfig.base.json", + "compilerOptions": { + "baseUrl": "./codebase", + "noEmit": true + }, + "include": ["codebase/**/*.ts", "codebase/**/*.tsx"], + "exclude": ["node_modules", "dist"] +}