nx
Version:
22 lines • 678 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.DependencyType = void 0;
/**
* Type of dependency between projects
*/
var DependencyType;
(function (DependencyType) {
/**
* Static dependencies are tied to the loading of the module
*/
DependencyType["static"] = "static";
/**
* Dynamic dependencies are brought in by the module at run time
*/
DependencyType["dynamic"] = "dynamic";
/**
* Implicit dependencies are inferred
*/
DependencyType["implicit"] = "implicit";
})(DependencyType = exports.DependencyType || (exports.DependencyType = {}));
//# sourceMappingURL=project-graph.js.map
;