summaryrefslogtreecommitdiff
path: root/cli/schemas
diff options
context:
space:
mode:
authorKamil Ogórek <kamil.ogorek@gmail.com>2022-12-20 02:29:44 +0100
committerGitHub <noreply@github.com>2022-12-19 20:29:44 -0500
commit199144daf04dc0f67d1ee775f9f39efeb77562d7 (patch)
tree95fc0b4d6f7c8772a72b11bb296f25b13014e460 /cli/schemas
parent54d40e008a0905a28569dbeb6f12a1a02189c217 (diff)
fix(cli): allow for specifying `noErrorTruncation` compiler option (#17127)
Fixes https://github.com/denoland/deno/issues/16568
Diffstat (limited to 'cli/schemas')
-rw-r--r--cli/schemas/config-file.v1.json6
1 files changed, 6 insertions, 0 deletions
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",