UNPKG

@nx/js

Version:

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

11 lines (10 loc) 374 B
import { type ModuleFormat } from '../../../utils/module-format/module-format'; export type { ModuleFormat }; export interface ModuleFormatDetectionOptions { projectRoot: string; workspaceRoot: string; tsConfig?: string; main: string; buildOptions?: any; } export declare function detectModuleFormat(options: ModuleFormatDetectionOptions): ModuleFormat;