build-a-squad/tsconfig.json
michael f4e4412bf2 Initial commit: Build-A-Squad staffing calculator
React 19 + TypeScript client-side app for creative agency staffing projections,
powered by Google Gemini for AI scope analysis. Includes asset catalog, staffing
routes, three-tab workflow (scoping, configurator, squad projection), scenario
management, and CSV/PDF export.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 09:49:16 -06:00

30 lines
No EOL
573 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
"types": [
"node"
],
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": true,
"jsx": "react-jsx",
"paths": {
"@/*": [
"./*"
]
},
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"noEmit": true
}
}