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>
20 lines
425 B
JSON
20 lines
425 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"target": "es6",
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDirs": ["./lib", "./e2e"],
|
|
"alwaysStrict": true,
|
|
"skipLibCheck": true
|
|
},
|
|
}
|