template-saas/apps/backend/node_modules/tsconfig/dist/tsconfig.d.ts
rckrdmrd 26f0e52ca7 feat: Initial commit - template-saas
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>
2026-01-07 04:41:24 -06:00

14 lines
730 B
TypeScript

export interface LoadResult {
path?: string;
config: any;
}
export declare function resolve(cwd: string, filename?: string): Promise<string | void>;
export declare function resolveSync(cwd: string, filename?: string): string | void;
export declare function find(dir: string): Promise<string | void>;
export declare function findSync(dir: string): string | void;
export declare function load(cwd: string, filename?: string): Promise<LoadResult>;
export declare function loadSync(cwd: string, filename?: string): LoadResult;
export declare function readFile(filename: string): Promise<any>;
export declare function readFileSync(filename: string): any;
export declare function parse(contents: string, filename: string): any;