Onboard vscode-api-tests to use shared tsconfig

This commit is contained in:
Matt Bierner 2018-10-01 16:38:29 -07:00
parent 402106a699
commit 950a3ff867
2 changed files with 4 additions and 10 deletions

View file

@ -349,6 +349,7 @@ suite('workspace-namespace', () => {
if (uri.authority === 'foo') {
return '1';
}
return undefined;
}
});
let registration2 = vscode.workspace.registerTextDocumentContentProvider('foo', {
@ -356,6 +357,7 @@ suite('workspace-namespace', () => {
if (uri.authority === 'bar') {
return '2';
}
return undefined;
}
});

View file

@ -1,15 +1,7 @@
{
"extends": "../shared.tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"target": "ES5",
"outDir": "out",
"lib": [
"es2015"
],
"sourceMap": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true
"outDir": "./out"
},
"include": [
"src/**/*"