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) 351 B
import { ExecutorContext } from '@nx/devkit'; import { SwcExecutorOptions } from '../../utils/schema'; export declare function swcExecutor(_options: SwcExecutorOptions, context: ExecutorContext): AsyncGenerator<{ success: boolean; outfile?: undefined; } | { success: boolean; outfile: string; }, any, any>; export default swcExecutor;