UNPKG

tracey-cli

Version:
51 lines (50 loc) 1.81 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.getConfiguration = void 0; var lodash_merge_1 = __importDefault(require("lodash.merge")); var path = __importStar(require("path")); /** * Merge the user configuration with the default configuration */ var getConfiguration = function () { var result = require(path.resolve('tracey.config.js')); var defaultConfiguration = { annotation: { excludes: [], startingpoints: [ '**', ], }, requirement: { excludes: [], startingpoints: [ '**', ], }, plugins: [], }; return lodash_merge_1.default(defaultConfiguration, result); }; exports.getConfiguration = getConfiguration;