UNPKG

@nx/webpack

Version:

The Nx Plugin for Webpack contains executors and generators that support building applications using Webpack.

7 lines (6 loc) 286 B
import { type GeneratorCallback, type Tree } from '@nx/devkit'; export type EnsureDependenciesOptions = { compiler?: 'swc' | 'tsc'; uiFramework?: 'none' | 'react'; }; export declare function ensureDependencies(tree: Tree, options: EnsureDependenciesOptions): GeneratorCallback;