Marketplace móvil para negocios locales mexicanos. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React Web) - apps/mobile (Expo/React Native) - apps/mcp-server (Claude MCP Server) - apps/whatsapp-service (WhatsApp Business API) - 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>
23 lines
1.0 KiB
TypeScript
23 lines
1.0 KiB
TypeScript
import { Configuration } from '../configuration';
|
|
import { BaseCompiler } from './base-compiler';
|
|
import { TsConfigProvider } from './helpers/tsconfig-provider';
|
|
import { PluginsLoader } from './plugins/plugins-loader';
|
|
import { TypeScriptBinaryLoader } from './typescript-loader';
|
|
type TypescriptWatchCompilerExtras = {
|
|
/**
|
|
* If `undefined`, the value of 'preserveWatchOutput' option from tsconfig
|
|
* file will be used instead.
|
|
*/
|
|
preserveWatchOutput: boolean | undefined;
|
|
};
|
|
export declare class WatchCompiler extends BaseCompiler<TypescriptWatchCompilerExtras> {
|
|
private readonly tsConfigProvider;
|
|
private readonly typescriptLoader;
|
|
constructor(pluginsLoader: PluginsLoader, tsConfigProvider: TsConfigProvider, typescriptLoader: TypeScriptBinaryLoader);
|
|
run(configuration: Required<Configuration>, tsConfigPath: string, appName: string, extras: TypescriptWatchCompilerExtras, onSuccess?: () => void): void;
|
|
private overrideCreateProgramFn;
|
|
private createDiagnosticReporter;
|
|
private createWatchStatusChanged;
|
|
}
|
|
export {};
|