We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6b494a0 + 6ae2347 commit e7a4a54Copy full SHA for e7a4a54
src/extension.ts
@@ -22,8 +22,6 @@ import * as path from 'path';
22
// this method is called when the extension is activated
23
export async function activate(context: vscode.ExtensionContext) {
24
25
- console.log('test...');
26
-
27
if(context.globalState.get<boolean>('ignoreDeprecatedConfig', false) !== true){
28
checkSettings().then((ret) => {
29
context.globalState.update('ignoreDeprecatedConfig', ret);
tsconfig.json
@@ -16,6 +16,7 @@
16
},
17
"exclude": [
18
"node_modules",
19
- ".vscode-test"
+ ".vscode-test",
20
+ "test",
21
]
}
0 commit comments