Files
architect-frontend/tsconfig.json
ARCHITECT f0d949c2a6 Initial commit: architect-frontend infrastructure viewer
- Vite + TypeScript + D3.js setup
- Infrastructure graph view (servers, services, connections)
- Tables graph view with categories (core, directus, storage, etc.)
- PostgREST API integration
- Deploy script for Caddy static serving

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-17 22:55:55 +00:00

20 lines
425 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"moduleResolution": "bundler",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"isolatedModules": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src"]
}