From 1d429e6045735a7eb34e6481f9e23c0090f67def Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Mon, 26 Feb 2024 14:39:38 +0100 Subject: [PATCH] Enable declaration maps --- .tsconfigrc.js | 7 ++++++- client-node-tests/src/tsconfig.json | 1 + client-node-tests/src/tsconfig.publish.json | 1 + client-node-tests/src/tsconfig.watch.json | 1 + client/src/browser/tsconfig.json | 1 + client/src/browser/tsconfig.publish.json | 1 + client/src/browser/tsconfig.watch.json | 1 + client/src/common/tsconfig.json | 1 + client/src/common/tsconfig.publish.json | 1 + client/src/common/tsconfig.watch.json | 1 + client/src/node/tsconfig.json | 1 + client/src/node/tsconfig.publish.json | 1 + client/src/node/tsconfig.watch.json | 1 + jsonrpc/src/browser/test/tsconfig.json | 1 + jsonrpc/src/browser/test/tsconfig.publish.json | 1 + jsonrpc/src/browser/test/tsconfig.watch.json | 1 + jsonrpc/src/browser/tsconfig.json | 1 + jsonrpc/src/browser/tsconfig.publish.json | 1 + jsonrpc/src/browser/tsconfig.watch.json | 1 + jsonrpc/src/common/test/tsconfig.json | 1 + jsonrpc/src/common/test/tsconfig.publish.json | 1 + jsonrpc/src/common/test/tsconfig.watch.json | 1 + jsonrpc/src/common/tsconfig.json | 1 + jsonrpc/src/common/tsconfig.publish.json | 1 + jsonrpc/src/common/tsconfig.watch.json | 1 + jsonrpc/src/node/test/tsconfig.json | 1 + jsonrpc/src/node/test/tsconfig.publish.json | 1 + jsonrpc/src/node/test/tsconfig.watch.json | 1 + jsonrpc/src/node/tsconfig.json | 1 + jsonrpc/src/node/tsconfig.publish.json | 1 + jsonrpc/src/node/tsconfig.watch.json | 1 + protocol/src/browser/test/tsconfig.json | 1 + protocol/src/browser/test/tsconfig.publish.json | 1 + protocol/src/browser/test/tsconfig.watch.json | 1 + protocol/src/browser/tsconfig.json | 1 + protocol/src/browser/tsconfig.publish.json | 1 + protocol/src/browser/tsconfig.watch.json | 1 + protocol/src/common/tsconfig.json | 1 + protocol/src/common/tsconfig.publish.json | 1 + protocol/src/common/tsconfig.watch.json | 1 + protocol/src/node/test/tsconfig.json | 1 + protocol/src/node/test/tsconfig.publish.json | 1 + protocol/src/node/test/tsconfig.watch.json | 1 + protocol/src/node/tsconfig.json | 1 + protocol/src/node/tsconfig.publish.json | 1 + protocol/src/node/tsconfig.watch.json | 1 + server/src/browser/tsconfig.json | 1 + server/src/browser/tsconfig.publish.json | 1 + server/src/browser/tsconfig.watch.json | 1 + server/src/common/tsconfig.json | 1 + server/src/common/tsconfig.publish.json | 1 + server/src/common/tsconfig.watch.json | 1 + server/src/node/test/tsconfig.json | 1 + server/src/node/test/tsconfig.publish.json | 1 + server/src/node/test/tsconfig.watch.json | 1 + server/src/node/tsconfig.json | 1 + server/src/node/tsconfig.publish.json | 1 + server/src/node/tsconfig.watch.json | 1 + textDocument/src/test/tsconfig.json | 1 + textDocument/src/test/tsconfig.umd.publish.json | 1 + textDocument/src/test/tsconfig.watch.json | 1 + textDocument/src/tsconfig.json | 1 + textDocument/src/tsconfig.umd.publish.json | 1 + textDocument/src/tsconfig.watch.json | 1 + tools/tsconfig.json | 1 + tools/tsconfig.watch.json | 1 + tsconfig-gen/tsconfig.json | 1 + tsconfig-gen/tsconfig.publish.json | 1 + tsconfig-gen/tsconfig.watch.json | 1 + types/src/test/tsconfig.json | 1 + types/src/test/tsconfig.umd.publish.json | 1 + types/src/test/tsconfig.watch.json | 1 + types/src/tsconfig.json | 1 + types/src/tsconfig.umd.publish.json | 1 + types/src/tsconfig.watch.json | 1 + 75 files changed, 80 insertions(+), 1 deletion(-) diff --git a/.tsconfigrc.js b/.tsconfigrc.js index 149f0133..02544e17 100644 --- a/.tsconfigrc.js +++ b/.tsconfigrc.js @@ -364,6 +364,7 @@ const defaultCompilerOptions = { /** @type CompilerOptions */ const compileCompilerOptions = CompilerOptions.assign(defaultCompilerOptions, { sourceMap: true, + declarationMap: true, noUnusedLocals: true, noUnusedParameters: true, target: 'es2020', @@ -381,6 +382,7 @@ const compileProjectOptions = { /** @type CompilerOptions */ const watchCompilerOptions = CompilerOptions.assign(defaultCompilerOptions, { sourceMap: true, + declarationMap: true, noUnusedLocals: false, noUnusedParameters: false, assumeChangesOnlyAffectDirectDependencies: true, @@ -399,6 +401,7 @@ const watchProjectOptions = { /** @type CompilerOptions */ const publishCompilerOptions = CompilerOptions.assign(defaultCompilerOptions, { sourceMap: false, + declarationMap: false, noUnusedLocals: true, noUnusedParameters: true, target: 'es2020', @@ -417,6 +420,7 @@ const publishProjectOptions = { /** @type CompilerOptions */ const umdCompilerOptions = CompilerOptions.assign(defaultCompilerOptions, { sourceMap: true, + declarationMap: true, noUnusedLocals: true, noUnusedParameters: true, target: 'es5', @@ -449,7 +453,8 @@ const umdWatchProjectOptions = { /** @type CompilerOptions */ const umdPublishCompilerOptions = CompilerOptions.assign(umdCompilerOptions, { - sourceMap: false + sourceMap: false, + declarationMap: false }); /** @type ProjectOptions */ diff --git a/client-node-tests/src/tsconfig.json b/client-node-tests/src/tsconfig.json index 2d18d683..7fb35b87 100644 --- a/client-node-tests/src/tsconfig.json +++ b/client-node-tests/src/tsconfig.json @@ -19,6 +19,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/client-node-tests/src/tsconfig.publish.json b/client-node-tests/src/tsconfig.publish.json index b6712f17..b78fe329 100644 --- a/client-node-tests/src/tsconfig.publish.json +++ b/client-node-tests/src/tsconfig.publish.json @@ -19,6 +19,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/client-node-tests/src/tsconfig.watch.json b/client-node-tests/src/tsconfig.watch.json index 995866b1..a4fa704c 100644 --- a/client-node-tests/src/tsconfig.watch.json +++ b/client-node-tests/src/tsconfig.watch.json @@ -19,6 +19,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/client/src/browser/tsconfig.json b/client/src/browser/tsconfig.json index 5c4b4f3d..d3379d14 100644 --- a/client/src/browser/tsconfig.json +++ b/client/src/browser/tsconfig.json @@ -17,6 +17,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/client/src/browser/tsconfig.publish.json b/client/src/browser/tsconfig.publish.json index 32b71d8e..eaaf4feb 100644 --- a/client/src/browser/tsconfig.publish.json +++ b/client/src/browser/tsconfig.publish.json @@ -17,6 +17,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/client/src/browser/tsconfig.watch.json b/client/src/browser/tsconfig.watch.json index 1038dc90..a02cc608 100644 --- a/client/src/browser/tsconfig.watch.json +++ b/client/src/browser/tsconfig.watch.json @@ -17,6 +17,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/client/src/common/tsconfig.json b/client/src/common/tsconfig.json index 9f627ac5..788ec0d9 100644 --- a/client/src/common/tsconfig.json +++ b/client/src/common/tsconfig.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/client/src/common/tsconfig.publish.json b/client/src/common/tsconfig.publish.json index de30e377..e20e0f22 100644 --- a/client/src/common/tsconfig.publish.json +++ b/client/src/common/tsconfig.publish.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/client/src/common/tsconfig.watch.json b/client/src/common/tsconfig.watch.json index e6a6d0d8..b6513bc7 100644 --- a/client/src/common/tsconfig.watch.json +++ b/client/src/common/tsconfig.watch.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/client/src/node/tsconfig.json b/client/src/node/tsconfig.json index e9f0637f..0258664d 100644 --- a/client/src/node/tsconfig.json +++ b/client/src/node/tsconfig.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/client/src/node/tsconfig.publish.json b/client/src/node/tsconfig.publish.json index 17c6165c..475e8463 100644 --- a/client/src/node/tsconfig.publish.json +++ b/client/src/node/tsconfig.publish.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/client/src/node/tsconfig.watch.json b/client/src/node/tsconfig.watch.json index eb878017..868d27d6 100644 --- a/client/src/node/tsconfig.watch.json +++ b/client/src/node/tsconfig.watch.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/jsonrpc/src/browser/test/tsconfig.json b/jsonrpc/src/browser/test/tsconfig.json index e436777f..1aa54189 100644 --- a/jsonrpc/src/browser/test/tsconfig.json +++ b/jsonrpc/src/browser/test/tsconfig.json @@ -17,6 +17,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/browser/test/tsconfig.publish.json b/jsonrpc/src/browser/test/tsconfig.publish.json index 94029e1f..22788b0c 100644 --- a/jsonrpc/src/browser/test/tsconfig.publish.json +++ b/jsonrpc/src/browser/test/tsconfig.publish.json @@ -17,6 +17,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/browser/test/tsconfig.watch.json b/jsonrpc/src/browser/test/tsconfig.watch.json index 6469dcd8..839228c2 100644 --- a/jsonrpc/src/browser/test/tsconfig.watch.json +++ b/jsonrpc/src/browser/test/tsconfig.watch.json @@ -17,6 +17,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/jsonrpc/src/browser/tsconfig.json b/jsonrpc/src/browser/tsconfig.json index 9847d9f5..2c723865 100644 --- a/jsonrpc/src/browser/tsconfig.json +++ b/jsonrpc/src/browser/tsconfig.json @@ -15,6 +15,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/browser/tsconfig.publish.json b/jsonrpc/src/browser/tsconfig.publish.json index c3323c06..7f9c4ebd 100644 --- a/jsonrpc/src/browser/tsconfig.publish.json +++ b/jsonrpc/src/browser/tsconfig.publish.json @@ -15,6 +15,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/browser/tsconfig.watch.json b/jsonrpc/src/browser/tsconfig.watch.json index aa5981ba..7d501668 100644 --- a/jsonrpc/src/browser/tsconfig.watch.json +++ b/jsonrpc/src/browser/tsconfig.watch.json @@ -15,6 +15,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/jsonrpc/src/common/test/tsconfig.json b/jsonrpc/src/common/test/tsconfig.json index 93bec80d..bd7f8a8a 100644 --- a/jsonrpc/src/common/test/tsconfig.json +++ b/jsonrpc/src/common/test/tsconfig.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/common/test/tsconfig.publish.json b/jsonrpc/src/common/test/tsconfig.publish.json index 4d004f43..38b6bc04 100644 --- a/jsonrpc/src/common/test/tsconfig.publish.json +++ b/jsonrpc/src/common/test/tsconfig.publish.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/common/test/tsconfig.watch.json b/jsonrpc/src/common/test/tsconfig.watch.json index 639d9c78..67f5d537 100644 --- a/jsonrpc/src/common/test/tsconfig.watch.json +++ b/jsonrpc/src/common/test/tsconfig.watch.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/jsonrpc/src/common/tsconfig.json b/jsonrpc/src/common/tsconfig.json index 8dfb5c6f..9315a718 100644 --- a/jsonrpc/src/common/tsconfig.json +++ b/jsonrpc/src/common/tsconfig.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/common/tsconfig.publish.json b/jsonrpc/src/common/tsconfig.publish.json index 6d54619b..9f0ae4b6 100644 --- a/jsonrpc/src/common/tsconfig.publish.json +++ b/jsonrpc/src/common/tsconfig.publish.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/common/tsconfig.watch.json b/jsonrpc/src/common/tsconfig.watch.json index 99e3dbd5..df019070 100644 --- a/jsonrpc/src/common/tsconfig.watch.json +++ b/jsonrpc/src/common/tsconfig.watch.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/jsonrpc/src/node/test/tsconfig.json b/jsonrpc/src/node/test/tsconfig.json index 84302287..b501f80c 100644 --- a/jsonrpc/src/node/test/tsconfig.json +++ b/jsonrpc/src/node/test/tsconfig.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/node/test/tsconfig.publish.json b/jsonrpc/src/node/test/tsconfig.publish.json index b53c5f3b..210c2c2e 100644 --- a/jsonrpc/src/node/test/tsconfig.publish.json +++ b/jsonrpc/src/node/test/tsconfig.publish.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/node/test/tsconfig.watch.json b/jsonrpc/src/node/test/tsconfig.watch.json index b78b915e..45378dcf 100644 --- a/jsonrpc/src/node/test/tsconfig.watch.json +++ b/jsonrpc/src/node/test/tsconfig.watch.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/jsonrpc/src/node/tsconfig.json b/jsonrpc/src/node/tsconfig.json index 02b3d9a7..244f03c2 100644 --- a/jsonrpc/src/node/tsconfig.json +++ b/jsonrpc/src/node/tsconfig.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/node/tsconfig.publish.json b/jsonrpc/src/node/tsconfig.publish.json index 586d5608..534b7fdf 100644 --- a/jsonrpc/src/node/tsconfig.publish.json +++ b/jsonrpc/src/node/tsconfig.publish.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/jsonrpc/src/node/tsconfig.watch.json b/jsonrpc/src/node/tsconfig.watch.json index 0b7929b1..ffb35694 100644 --- a/jsonrpc/src/node/tsconfig.watch.json +++ b/jsonrpc/src/node/tsconfig.watch.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/protocol/src/browser/test/tsconfig.json b/protocol/src/browser/test/tsconfig.json index e436777f..1aa54189 100644 --- a/protocol/src/browser/test/tsconfig.json +++ b/protocol/src/browser/test/tsconfig.json @@ -17,6 +17,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/browser/test/tsconfig.publish.json b/protocol/src/browser/test/tsconfig.publish.json index 94029e1f..22788b0c 100644 --- a/protocol/src/browser/test/tsconfig.publish.json +++ b/protocol/src/browser/test/tsconfig.publish.json @@ -17,6 +17,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/browser/test/tsconfig.watch.json b/protocol/src/browser/test/tsconfig.watch.json index 6469dcd8..839228c2 100644 --- a/protocol/src/browser/test/tsconfig.watch.json +++ b/protocol/src/browser/test/tsconfig.watch.json @@ -17,6 +17,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/protocol/src/browser/tsconfig.json b/protocol/src/browser/tsconfig.json index 9847d9f5..2c723865 100644 --- a/protocol/src/browser/tsconfig.json +++ b/protocol/src/browser/tsconfig.json @@ -15,6 +15,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/browser/tsconfig.publish.json b/protocol/src/browser/tsconfig.publish.json index c3323c06..7f9c4ebd 100644 --- a/protocol/src/browser/tsconfig.publish.json +++ b/protocol/src/browser/tsconfig.publish.json @@ -15,6 +15,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/browser/tsconfig.watch.json b/protocol/src/browser/tsconfig.watch.json index aa5981ba..7d501668 100644 --- a/protocol/src/browser/tsconfig.watch.json +++ b/protocol/src/browser/tsconfig.watch.json @@ -15,6 +15,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/protocol/src/common/tsconfig.json b/protocol/src/common/tsconfig.json index 4051df97..b265037d 100644 --- a/protocol/src/common/tsconfig.json +++ b/protocol/src/common/tsconfig.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/common/tsconfig.publish.json b/protocol/src/common/tsconfig.publish.json index 5cfd202d..cc1d5a42 100644 --- a/protocol/src/common/tsconfig.publish.json +++ b/protocol/src/common/tsconfig.publish.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/common/tsconfig.watch.json b/protocol/src/common/tsconfig.watch.json index 54cc2754..2eaf54c8 100644 --- a/protocol/src/common/tsconfig.watch.json +++ b/protocol/src/common/tsconfig.watch.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/protocol/src/node/test/tsconfig.json b/protocol/src/node/test/tsconfig.json index 84302287..b501f80c 100644 --- a/protocol/src/node/test/tsconfig.json +++ b/protocol/src/node/test/tsconfig.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/node/test/tsconfig.publish.json b/protocol/src/node/test/tsconfig.publish.json index b53c5f3b..210c2c2e 100644 --- a/protocol/src/node/test/tsconfig.publish.json +++ b/protocol/src/node/test/tsconfig.publish.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/node/test/tsconfig.watch.json b/protocol/src/node/test/tsconfig.watch.json index b78b915e..45378dcf 100644 --- a/protocol/src/node/test/tsconfig.watch.json +++ b/protocol/src/node/test/tsconfig.watch.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/protocol/src/node/tsconfig.json b/protocol/src/node/tsconfig.json index 02b3d9a7..244f03c2 100644 --- a/protocol/src/node/tsconfig.json +++ b/protocol/src/node/tsconfig.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/node/tsconfig.publish.json b/protocol/src/node/tsconfig.publish.json index 586d5608..534b7fdf 100644 --- a/protocol/src/node/tsconfig.publish.json +++ b/protocol/src/node/tsconfig.publish.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/protocol/src/node/tsconfig.watch.json b/protocol/src/node/tsconfig.watch.json index 0b7929b1..ffb35694 100644 --- a/protocol/src/node/tsconfig.watch.json +++ b/protocol/src/node/tsconfig.watch.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/server/src/browser/tsconfig.json b/server/src/browser/tsconfig.json index d7733634..781e204e 100644 --- a/server/src/browser/tsconfig.json +++ b/server/src/browser/tsconfig.json @@ -15,6 +15,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/server/src/browser/tsconfig.publish.json b/server/src/browser/tsconfig.publish.json index 0f9d49e8..40a35671 100644 --- a/server/src/browser/tsconfig.publish.json +++ b/server/src/browser/tsconfig.publish.json @@ -15,6 +15,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/server/src/browser/tsconfig.watch.json b/server/src/browser/tsconfig.watch.json index f8f71806..25eea702 100644 --- a/server/src/browser/tsconfig.watch.json +++ b/server/src/browser/tsconfig.watch.json @@ -15,6 +15,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/server/src/common/tsconfig.json b/server/src/common/tsconfig.json index 4051df97..b265037d 100644 --- a/server/src/common/tsconfig.json +++ b/server/src/common/tsconfig.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/server/src/common/tsconfig.publish.json b/server/src/common/tsconfig.publish.json index 5cfd202d..cc1d5a42 100644 --- a/server/src/common/tsconfig.publish.json +++ b/server/src/common/tsconfig.publish.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/server/src/common/tsconfig.watch.json b/server/src/common/tsconfig.watch.json index 54cc2754..2eaf54c8 100644 --- a/server/src/common/tsconfig.watch.json +++ b/server/src/common/tsconfig.watch.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/server/src/node/test/tsconfig.json b/server/src/node/test/tsconfig.json index 84302287..b501f80c 100644 --- a/server/src/node/test/tsconfig.json +++ b/server/src/node/test/tsconfig.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/server/src/node/test/tsconfig.publish.json b/server/src/node/test/tsconfig.publish.json index b53c5f3b..210c2c2e 100644 --- a/server/src/node/test/tsconfig.publish.json +++ b/server/src/node/test/tsconfig.publish.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/server/src/node/test/tsconfig.watch.json b/server/src/node/test/tsconfig.watch.json index b78b915e..45378dcf 100644 --- a/server/src/node/test/tsconfig.watch.json +++ b/server/src/node/test/tsconfig.watch.json @@ -14,6 +14,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/server/src/node/tsconfig.json b/server/src/node/tsconfig.json index 02b3d9a7..244f03c2 100644 --- a/server/src/node/tsconfig.json +++ b/server/src/node/tsconfig.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/server/src/node/tsconfig.publish.json b/server/src/node/tsconfig.publish.json index 586d5608..534b7fdf 100644 --- a/server/src/node/tsconfig.publish.json +++ b/server/src/node/tsconfig.publish.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/server/src/node/tsconfig.watch.json b/server/src/node/tsconfig.watch.json index 0b7929b1..ffb35694 100644 --- a/server/src/node/tsconfig.watch.json +++ b/server/src/node/tsconfig.watch.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/textDocument/src/test/tsconfig.json b/textDocument/src/test/tsconfig.json index 5532427f..d0d94907 100644 --- a/textDocument/src/test/tsconfig.json +++ b/textDocument/src/test/tsconfig.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/textDocument/src/test/tsconfig.umd.publish.json b/textDocument/src/test/tsconfig.umd.publish.json index 74be82d0..3e20bff4 100644 --- a/textDocument/src/test/tsconfig.umd.publish.json +++ b/textDocument/src/test/tsconfig.umd.publish.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/textDocument/src/test/tsconfig.watch.json b/textDocument/src/test/tsconfig.watch.json index e3ef9ee8..76a529b6 100644 --- a/textDocument/src/test/tsconfig.watch.json +++ b/textDocument/src/test/tsconfig.watch.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/textDocument/src/tsconfig.json b/textDocument/src/tsconfig.json index 6cd3e620..87a2adb1 100644 --- a/textDocument/src/tsconfig.json +++ b/textDocument/src/tsconfig.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/textDocument/src/tsconfig.umd.publish.json b/textDocument/src/tsconfig.umd.publish.json index d2557d0b..ae39f99b 100644 --- a/textDocument/src/tsconfig.umd.publish.json +++ b/textDocument/src/tsconfig.umd.publish.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/textDocument/src/tsconfig.watch.json b/textDocument/src/tsconfig.watch.json index 6058f4b4..96316dfc 100644 --- a/textDocument/src/tsconfig.watch.json +++ b/textDocument/src/tsconfig.watch.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/tools/tsconfig.json b/tools/tsconfig.json index c82c1bc4..49f12c2d 100644 --- a/tools/tsconfig.json +++ b/tools/tsconfig.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/tools/tsconfig.watch.json b/tools/tsconfig.watch.json index ce7293fc..d28d50b7 100644 --- a/tools/tsconfig.watch.json +++ b/tools/tsconfig.watch.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/tsconfig-gen/tsconfig.json b/tsconfig-gen/tsconfig.json index c82c1bc4..49f12c2d 100644 --- a/tsconfig-gen/tsconfig.json +++ b/tsconfig-gen/tsconfig.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/tsconfig-gen/tsconfig.publish.json b/tsconfig-gen/tsconfig.publish.json index 9731a5e9..cbb08526 100644 --- a/tsconfig-gen/tsconfig.publish.json +++ b/tsconfig-gen/tsconfig.publish.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es2020", diff --git a/tsconfig-gen/tsconfig.watch.json b/tsconfig-gen/tsconfig.watch.json index ce7293fc..d28d50b7 100644 --- a/tsconfig-gen/tsconfig.watch.json +++ b/tsconfig-gen/tsconfig.watch.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": false, "noUnusedParameters": false, "assumeChangesOnlyAffectDirectDependencies": true, diff --git a/types/src/test/tsconfig.json b/types/src/test/tsconfig.json index 5532427f..d0d94907 100644 --- a/types/src/test/tsconfig.json +++ b/types/src/test/tsconfig.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/types/src/test/tsconfig.umd.publish.json b/types/src/test/tsconfig.umd.publish.json index 74be82d0..3e20bff4 100644 --- a/types/src/test/tsconfig.umd.publish.json +++ b/types/src/test/tsconfig.umd.publish.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/types/src/test/tsconfig.watch.json b/types/src/test/tsconfig.watch.json index e3ef9ee8..76a529b6 100644 --- a/types/src/test/tsconfig.watch.json +++ b/types/src/test/tsconfig.watch.json @@ -13,6 +13,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/types/src/tsconfig.json b/types/src/tsconfig.json index 6cd3e620..87a2adb1 100644 --- a/types/src/tsconfig.json +++ b/types/src/tsconfig.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/types/src/tsconfig.umd.publish.json b/types/src/tsconfig.umd.publish.json index d2557d0b..ae39f99b 100644 --- a/types/src/tsconfig.umd.publish.json +++ b/types/src/tsconfig.umd.publish.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": false, + "declarationMap": false, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5", diff --git a/types/src/tsconfig.watch.json b/types/src/tsconfig.watch.json index 6058f4b4..96316dfc 100644 --- a/types/src/tsconfig.watch.json +++ b/types/src/tsconfig.watch.json @@ -11,6 +11,7 @@ "declaration": true, "stripInternal": true, "sourceMap": true, + "declarationMap": true, "noUnusedLocals": true, "noUnusedParameters": true, "target": "es5",