Inroduce 'commons-vscode' to share typescript code between vscode-exts

This commit is contained in:
Kris De Volder
2016-11-10 14:51:24 -08:00
parent 01f39c7722
commit 3dbf0b39d2
25 changed files with 556 additions and 36 deletions

View File

@@ -0,0 +1,3 @@
import {testUtil} from './launch-util';
export {testUtil};

View File

@@ -0,0 +1,5 @@
import * as code from 'vscode';
export function testUtil() {
return 'this is a test';
}