mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-15 22:21:20 +00:00
- 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
58 lines
1.1 KiB
JSON
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"
|
|
]
|
|
} |