Skip to content

Commit e12fbaa

Browse files
committed
Update html, css, andjson clients to use shared tsconfig
1 parent 6d11792 commit e12fbaa

4 files changed

Lines changed: 15 additions & 27 deletions

File tree

extensions/css-language-features/client/tsconfig.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
{
2+
"extends": "../../shared.tsconfig.json",
23
"compilerOptions": {
3-
"target": "es6",
4-
"module": "commonjs",
5-
"outDir": "./out",
6-
"noUnusedLocals": true,
7-
"sourceMap": true,
8-
"lib": [
9-
"es2016"
10-
],
11-
"strict": true
4+
"outDir": "./out"
125
},
136
"include": [
147
"src/**/*"
Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
{
2+
"extends": "../../shared.tsconfig.json",
23
"compilerOptions": {
3-
"target": "es6",
4-
"module": "commonjs",
5-
"outDir": "./out",
6-
"noUnusedLocals": true,
7-
"sourceMap": true,
8-
"lib": [
9-
"es2016"
10-
],
11-
"strict": true
12-
}
4+
"outDir": "./out"
5+
},
6+
"include": [
7+
"src/**/*"
8+
]
139
}

extensions/json-language-features/client/src/jsonMain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export function deactivate(): Promise<any> {
143143
return telemetryReporter ? telemetryReporter.dispose() : Promise.resolve(null);
144144
}
145145

146-
function getSchemaAssociation(context: ExtensionContext): ISchemaAssociations {
146+
function getSchemaAssociation(_context: ExtensionContext): ISchemaAssociations {
147147
let associations: ISchemaAssociations = {};
148148
extensions.all.forEach(extension => {
149149
let packageJSON = extension.packageJSON;
Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
2+
"extends": "../../shared.tsconfig.json",
23
"compilerOptions": {
3-
"target": "es6",
4-
"module": "commonjs",
5-
"outDir": "./out",
6-
"noUnusedLocals": true,
7-
"lib": [ "es2016" ],
8-
"strict": true
9-
}
4+
"outDir": "./out"
5+
},
6+
"include": [
7+
"src/**/*"
8+
]
109
}

0 commit comments

Comments
 (0)