From 3749b2fa79e9413033502aeb3c7f4c0aa85bb370 Mon Sep 17 00:00:00 2001 From: Apoorv Mishra Date: Wed, 22 Nov 2023 19:32:21 +0530 Subject: [PATCH] fix: set noErrorTruncation compiler flag (#6196) --- tsconfig.json | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 613ae0671..2736d3fc1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,6 +12,7 @@ "lib": ["dom", "es2020", "dom.iterable", "esnext.asynciterable"], "module": "esnext", "moduleResolution": "node", + "noErrorTruncation": true, "noImplicitAny": true, "noImplicitOverride": false, "noImplicitReturns": true, @@ -30,9 +31,5 @@ "~/*": ["./app/*"] } }, - "exclude": [ - "node_modules", - "build", - "server/migrations" - ] -} \ No newline at end of file + "exclude": ["node_modules", "build", "server/migrations"] +}