symlink-resolver
Version:
Simple tool for replacing symlinks by real files and vice versa.
14 lines (11 loc) • 353 B
text/typescript
import { SymlinkHelper } from './symlink-helper';
export interface ConfigInterface {
rootDir: string;
symlinksFile: string;
helperClass: typeof SymlinkHelper;
}
export const Config: ConfigInterface = {
rootDir: process.argv[3], // TODO: make sure path is provided
symlinksFile: '/.symlinks.json',
helperClass: SymlinkHelper
};