UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

13 lines (11 loc) 280 B
import {getHelpers} from "./env-util.mjs"; export function createConfig(path = "") { return { "spec_dir": "", "spec_files": [ "bin/esm/**/*[sS]pec.js" ], "helpers": getHelpers("node", path), }; } export default createConfig();