Update html, css, andjson clients to use shared tsconfig

This commit is contained in:
Matt Bierner
2018-10-01 18:57:32 -07:00
parent 6d11792abf
commit e12fbaa5cd
4 changed files with 15 additions and 27 deletions

View File

@@ -143,7 +143,7 @@ export function deactivate(): Promise<any> {
return telemetryReporter ? telemetryReporter.dispose() : Promise.resolve(null);
}
function getSchemaAssociation(context: ExtensionContext): ISchemaAssociations {
function getSchemaAssociation(_context: ExtensionContext): ISchemaAssociations {
let associations: ISchemaAssociations = {};
extensions.all.forEach(extension => {
let packageJSON = extension.packageJSON;

View File

@@ -1,10 +1,9 @@
{
"extends": "../../shared.tsconfig.json",
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"outDir": "./out",
"noUnusedLocals": true,
"lib": [ "es2016" ],
"strict": true
}
"outDir": "./out"
},
"include": [
"src/**/*"
]
}