chore(data-api): 🔧 Update TypeScript compiler settings and .gitignore to ignore build artifacts
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
c482b6b997
commit
f096522f14
2 changed files with 18 additions and 0 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -65,3 +65,5 @@ deployments/@domains/quinn.www/.quinn/dashboard/.log
|
|||
|
||||
# Claude worktrees — ephemeral agent sandboxes, never commit
|
||||
tooling/claude/dot-claude/worktrees/
|
||||
.claude/worktrees/
|
||||
users/**/.claude/worktrees/
|
||||
|
|
|
|||
16
codebase/@features/provider-website/data-api/tsconfig.json
Normal file
16
codebase/@features/provider-website/data-api/tsconfig.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "bundler",
|
||||
"allowImportingTsExtensions": false,
|
||||
"strict": false,
|
||||
"noImplicitAny": false,
|
||||
"skipLibCheck": true,
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
"types": ["node"]
|
||||
},
|
||||
"include": ["src/**/*.ts"],
|
||||
"exclude": ["src/**/*.test.ts", "src/__tests__/**", "dist"]
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue