UNPKG

vscode-projects-plus

Version:

An extension for managing projects. Feature rich, customizable, automatically finds your projects

24 lines (13 loc) 361 B
/* IMPORT */ import * as vscode from 'vscode'; import './statusbar'; import Config from './config'; import Utils from './utils'; /* ACTIVATE */ async function activate ( context: vscode.ExtensionContext ) { const config = await Config.get (); Utils.initViews ( context ); return Utils.initCommands ( context ); } /* EXPORT */ export {activate};