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>
7 lines
312 B
TypeScript
7 lines
312 B
TypeScript
import type * as _ts from 'typescript';
|
|
export declare function getUseDefineForClassFields(compilerOptions: _ts.CompilerOptions): boolean;
|
|
export declare function getEmitScriptTarget(compilerOptions: {
|
|
module?: _ts.CompilerOptions['module'];
|
|
target?: _ts.CompilerOptions['target'];
|
|
}): _ts.ScriptTarget;
|