Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
334 B
JSON
17 lines
334 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Node 16",
|
|
|
|
"compilerOptions": {
|
|
"lib": ["es2021"],
|
|
"module": "Node16",
|
|
"target": "es2021",
|
|
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node"
|
|
}
|
|
}
|