UNPKG

@nx/js

Version:

The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects.

10 lines 356 B
export type ModuleFormat = 'cjs' | 'esm'; export interface ModuleFormatDetectionOptions { projectRoot: string; workspaceRoot: string; tsConfig?: string; main: string; buildOptions?: any; } export declare function detectModuleFormat(options: ModuleFormatDetectionOptions): ModuleFormat; //# sourceMappingURL=detect-module-format.d.ts.map