From 199144daf04dc0f67d1ee775f9f39efeb77562d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Og=C3=B3rek?= Date: Tue, 20 Dec 2022 02:29:44 +0100 Subject: fix(cli): allow for specifying `noErrorTruncation` compiler option (#17127) Fixes https://github.com/denoland/deno/issues/16568 --- cli/schemas/config-file.v1.json | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'cli/schemas') diff --git a/cli/schemas/config-file.v1.json b/cli/schemas/config-file.v1.json index 67650309e..599427ebe 100644 --- a/cli/schemas/config-file.v1.json +++ b/cli/schemas/config-file.v1.json @@ -87,6 +87,12 @@ }, "markdownDescription": "Specify a set of bundled library declaration files that describe the target runtime environment.\n\nSee more: https://www.typescriptlang.org/tsconfig#lib" }, + "noErrorTruncation": { + "description": "Do not truncate error messages.", + "type": "boolean", + "default": false, + "markdownDescription": "Do not truncate error messages.\n\nSee more: https://www.typescriptlang.org/tsconfig#noErrorTruncation" + }, "noFallthroughCasesInSwitch": { "description": "Enable error reporting for fallthrough cases in switch statements.", "type": "boolean", -- cgit v1.2.3