chore(config): 🔧 Update build and dev tooling configs to ignore extra artifacts and refine TypeScript compiler settings
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
ea73746b84
commit
b20dcb1f03
2 changed files with 44 additions and 0 deletions
35
.gitignore
vendored
Normal file
35
.gitignore
vendored
Normal file
|
|
@ -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__/
|
||||
9
tsconfig.json
Normal file
9
tsconfig.json
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"extends": "./codebase/tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./codebase",
|
||||
"noEmit": true
|
||||
},
|
||||
"include": ["codebase/**/*.ts", "codebase/**/*.tsx"],
|
||||
"exclude": ["node_modules", "dist"]
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue