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>
9 lines
308 B
TypeScript
9 lines
308 B
TypeScript
declare namespace appRootPath {
|
|
export function resolve(pathToModule: string): string
|
|
export function require(pathToModule: string): ReturnType<NodeRequire>
|
|
export function toString(): string
|
|
export function setPath(explicitlySetPath: string): void
|
|
export const path: string
|
|
}
|
|
export = appRootPath
|