UNPKG

@nx/js

Version:

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

35 lines (34 loc) 952 B
import { Tree } from 'nx/src/generators/tree'; export declare const tsConfigBaseOptions: { rootDir: string; sourceMap: boolean; declaration: boolean; moduleResolution: string; emitDecoratorMetadata: boolean; experimentalDecorators: boolean; importHelpers: boolean; target: string; module: string; lib: string[]; skipLibCheck: boolean; skipDefaultLibCheck: boolean; strict: boolean; paths: {}; }; export declare function getTsConfigBaseOptions(tree: Tree): { rootDir: string; sourceMap: boolean; declaration: boolean; emitDecoratorMetadata: boolean; experimentalDecorators: boolean; importHelpers: boolean; target: string; module: string; lib: string[]; skipLibCheck: boolean; skipDefaultLibCheck: boolean; strict: boolean; paths: {}; moduleResolution: "bundler" | "node10"; }; export declare function extractTsConfigBase(host: Tree): void;