Files
ccs/tsconfig.json
T
kaitranntt 59758024c9 feat(web-dashboard): complete settings, health, shared data and build integration
- Settings editor with API key masking and conflict detection
- Health dashboard with status cards and one-click fixes
- Home dashboard with stats and quick actions
- Shared data viewer for commands/skills/agents
- Build scripts for UI + server bundle
- Bundle size verification (<500KB gzipped)
- Pre-release checklist script
2025-12-07 14:23:56 -05:00

58 lines
1.1 KiB
JSON

{
"compilerOptions": {
// Output
"outDir": "./dist",
"rootDir": "./src",
"sourceMap": true,
// Module system
"module": "commonjs",
"target": "ES2020",
"lib": ["ES2020"],
// Module resolution
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"skipLibCheck": true,
// Type checking (start strict)
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
// Additional checks
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
// Output options
"declaration": true,
"declarationMap": true,
"removeComments": false,
"preserveConstEnums": true,
// Interop
"forceConsistentCasingInFileNames": true,
// Performance
"incremental": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"tests",
"lib",
"scripts",
"ui"
]
}