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>
18 lines
605 B
TypeScript
18 lines
605 B
TypeScript
export interface PluginOptions {
|
|
dtoFileNameSuffix?: string | string[];
|
|
controllerFileNameSuffix?: string | string[];
|
|
classValidatorShim?: boolean;
|
|
classTransformerShim?: boolean | 'exclusive';
|
|
dtoKeyOfComment?: string;
|
|
controllerKeyOfComment?: string;
|
|
introspectComments?: boolean;
|
|
esmCompatible?: boolean;
|
|
readonly?: boolean;
|
|
pathToSource?: string;
|
|
debug?: boolean;
|
|
parameterProperties?: boolean;
|
|
skipAutoHttpCode?: boolean;
|
|
skipDefaultValues?: boolean;
|
|
}
|
|
export declare const mergePluginOptions: (options?: Record<string, any>) => PluginOptions;
|