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>
24 lines
395 B
JSON
24 lines
395 B
JSON
{
|
|
"tabWidth": 2,
|
|
"printWidth": 120,
|
|
"semi": false,
|
|
"trailingComma": "es5",
|
|
"singleQuote": true,
|
|
"overrides": [
|
|
{
|
|
"files": "*.ts",
|
|
"options": {
|
|
"tabWidth": 4
|
|
}
|
|
},
|
|
{
|
|
"files": "{tsconfig.json,.vscode/**/*.json}",
|
|
"options": {
|
|
"parser": "json5",
|
|
"singleQuote": false,
|
|
"quoteProps": "preserve"
|
|
}
|
|
}
|
|
]
|
|
}
|