Project Files
dist / index.js
"use strict";
/**
* @file index.ts
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.main = main;
const config_1 = require("./config");
const toolsProvider_1 = require("./toolsProvider");
// This is the entry point of the plugin. The main function is to register different components of
// the plugin, such as preprocessor, toolsProvider, etc.
//
// You do not need to modify this file unless you want to add more components to the plugin, and/or
// add custom initialization logic.
async function main(context) {
context.withConfigSchematics(config_1.configSchematics);
context.withToolsProvider(toolsProvider_1.toolsProvider);
}
//# sourceMappingURL=index.js.map