fuse-box-typechecker
Version:
Fuse-Box type checker plugin for fusebox 4.0.0 ++
11 lines • 370 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.getPath = void 0;
const path = require("path");
function getPath(usePath, options) {
return options.basePath
? path.resolve(options.basePath, usePath)
: path.resolve(process.cwd(), usePath);
}
exports.getPath = getPath;
//# sourceMappingURL=getPath.js.map
;