@harves/nx-node-esm-plugin
Version:
Node executor including ESM module resolution for buildable libraries within Nx workspaces.
21 lines (17 loc) • 522 B
TypeScript
export interface NodeExecutorSchema {
buildTarget: string;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
buildTargetOptions?: Record<string, any>;
fileToRunMode?: 'packageJson' | 'specified' | 'fromBuildTarget';
fileToRun?: string;
args?: string[];
moduleResolutionOverrides?: { [specifier:string]: string };
color?: boolean;
cwd?: string;
env?: Record<string, string>;
envFile?: string;
// usePty?: boolean;
streamOutput?: boolean;
_: string[];
__unparsed__: string[];
}