UNPKG

@nx/js

Version:

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

6 lines (5 loc) 493 B
import type { ExecutorContext } from '@nx/devkit'; import type { NormalizedExecutorOptions } from '../../../../utils/schema'; import type { TypescriptInMemoryTsConfig } from '../typescript-compilation'; import type { TaskInfo } from './types'; export declare function createTaskInfoPerTsConfigMap(tasksOptions: Record<string, NormalizedExecutorOptions>, context: ExecutorContext, tasks: string[], taskInMemoryTsConfigMap: Record<string, TypescriptInMemoryTsConfig>): Record<string, TaskInfo>;