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>
22 lines
483 B
JSON
22 lines
483 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"removeComments": true,
|
|
"noLib": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"target": "es6",
|
|
"sourceMap": false,
|
|
"outDir": "./dist",
|
|
"rootDir": "./lib",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"lib/**/*"
|
|
],
|
|
"exclude": ["node_modules", "test", "dist", "**/*spec.ts", "e2e"]
|
|
}
|