Skip to content

Commit e7a4a54

Browse files
Merge pull request #119 from ManuelHentschel/bugfixes
bugfixes
2 parents 6b494a0 + 6ae2347 commit e7a4a54

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/extension.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ import * as path from 'path';
2222
// this method is called when the extension is activated
2323
export async function activate(context: vscode.ExtensionContext) {
2424

25-
console.log('test...');
26-
2725
if(context.globalState.get<boolean>('ignoreDeprecatedConfig', false) !== true){
2826
checkSettings().then((ret) => {
2927
context.globalState.update('ignoreDeprecatedConfig', ret);

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
},
1717
"exclude": [
1818
"node_modules",
19-
".vscode-test"
19+
".vscode-test",
20+
"test",
2021
]
2122
}

0 commit comments

Comments
 (0)