"use strict"; import { registerManifestsReference, registerWebComponentDefinitions } from "@omnia/tooling-vue"; Object.defineProperty(exports, "__esModule", { value: true }); const path = require("path"); const fs = require("fs"); const fsExtra = require("fs-extra"); //require("./internal-do-not-import-from-here/tooling"); export function init() { registerManifestsReference([ { path: "node_modules/@omnia/workplace/internal-do-not-import-from-here/manifests/omnia.workplace.fx.manifest.json", serviceId: "39df27aa-95f1-4a23-b3f6-8b231afcda82", resourceId: "491a5b75-e3d6-472a-8958-216be85b092a" } ]); const wcdefinitionsPath = path.resolve(__dirname, "./internal-do-not-import-from-here/wcdefinitions.json"); if (fsExtra.existsSync(wcdefinitionsPath)) { registerWebComponentDefinitions(fsExtra.readJSONSync(wcdefinitionsPath)); } } //exports.init = init;