From ef20bc5a4453dedb465f6c8a0056a007fd72514c Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Thu, 23 Dec 2021 18:39:01 +0100 Subject: [PATCH] Disabled useUnknownInCatchVariables for self-hosted example --- examples/self-hosted/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/self-hosted/tsconfig.json b/examples/self-hosted/tsconfig.json index c0f1d66..5650b21 100644 --- a/examples/self-hosted/tsconfig.json +++ b/examples/self-hosted/tsconfig.json @@ -5,7 +5,8 @@ "module": "CommonJS", "outDir": "build", "moduleResolution": "node", - "sourceMap": true + "sourceMap": true, + "useUnknownInCatchVariables": false }, "exclude": ["node_modules"] }