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>
29 lines
692 B
JSON
29 lines
692 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"moduleResolution": "node",
|
|
"stripInternal": true,
|
|
"noEmit": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"target": "esnext",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"rxjs": ["./src/index"],
|
|
"rxjs/operators": ["./src/operators/index"],
|
|
"rxjs/testing": ["./src/testing/index"],
|
|
"rxjs/ajax": ["./src/ajax/index"],
|
|
"rxjs/webSocket": ["./src/webSocket/index"],
|
|
"rxjs/fetch": ["./src/fetch/index"],
|
|
"rxjs/internal/*": ["./src/internal/*"]
|
|
}
|
|
}
|
|
}
|