mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-12 22:08:04 -05:00
Onboard vscode-api-tests to use shared tsconfig
This commit is contained in:
@@ -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;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
@@ -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/**/*"
|
||||
|
||||
Reference in New Issue
Block a user