@bleed-believer/path-alias
Version:
Assign path alias using tsconfig.json file
10 lines (9 loc) • 367 B
TypeScript
import type { NodeLauncherInjection } from './interfaces/index.js';
export declare class NodeLauncher {
#private;
static get loaderPath(): string;
get targetPath(): string;
get targetArgs(): string[];
constructor(targetPath: string, targetArgs: string[], inject?: Partial<NodeLauncherInjection>);
initialize(watch?: boolean): Promise<void>;
}