From 4835b22294eecf8cda8ccb23a937b10560a4f3eb Mon Sep 17 00:00:00 2001 From: Methapon Metanipat Date: Wed, 16 Oct 2024 15:54:51 +0700 Subject: [PATCH] chore: update tsconfig to not truncate error --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 38f2bd2..b13e265 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,7 +13,8 @@ "experimentalDecorators": true, "emitDecoratorMetadata": true, "resolveJsonModule": true, - "skipLibCheck": true + "skipLibCheck": true, + "noErrorTruncation": true }, "include": ["src/**/*.ts"] }