UNPKG

@boost/config

Version:

Powerful convention based finder, loader, and manager of both configuration and ignore files.

7 lines (5 loc) 201 B
import { Path } from '@boost/common'; import { importAbsoluteModule } from '@boost/internal'; export async function loadJs<T>(path: Path): Promise<T> { return importAbsoluteModule<T>(path.path()); }