@clawject/di
Version:
<p align="center"> <a href="https://clawject.com/" target="_blank"><img src="https://clawject.com/img/logo.svg" align="center" alt="Clawject Logo" width="120" height="120" /></a> </p>
17 lines (16 loc) • 411 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.resolveOptions = void 0;
const defaultOptions = {
include: [/\.[cm]?tsx?$/],
exclude: [/node_modules/],
skipCompilation: false,
tsconfig: 'tsconfig.json'
};
const resolveOptions = (options = {}) => {
return {
...defaultOptions,
...options
};
};
exports.resolveOptions = resolveOptions;