UNPKG

@nx/js

Version:

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

8 lines (7 loc) 415 B
import type { Tree } from '@nx/devkit'; import type { CompilerOptions } from 'typescript'; /** * Cleans up the provided compiler options to only include the options that are * different or not set in the provided tsconfig file. */ export declare function getNeededCompilerOptionOverrides(tree: Tree, compilerOptions: Record<keyof CompilerOptions, any>, tsConfigPath: string): Record<keyof CompilerOptions, any>;