Inroduce 'commons-vscode' to share typescript code between vscode-exts
This commit is contained in:
3
vscode-extensions/commons-vscode/src/index.ts
Normal file
3
vscode-extensions/commons-vscode/src/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
import {testUtil} from './launch-util';
|
||||
|
||||
export {testUtil};
|
||||
5
vscode-extensions/commons-vscode/src/launch-util.ts
Normal file
5
vscode-extensions/commons-vscode/src/launch-util.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import * as code from 'vscode';
|
||||
|
||||
export function testUtil() {
|
||||
return 'this is a test';
|
||||
}
|
||||
Reference in New Issue
Block a user