From 7ca441aaaeff58004e6716400087fcc730fbb765 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Fri, 15 Nov 2024 23:45:15 +0100 Subject: [PATCH] Disable ts truncations --- api/tsconfig.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/api/tsconfig.json b/api/tsconfig.json index e03f1d36..ec10ebde 100644 --- a/api/tsconfig.json +++ b/api/tsconfig.json @@ -3,12 +3,11 @@ "target": "ES2021", "module": "ES2022", "moduleResolution": "node", - "types": [ - "bun-types" - ], + "types": ["bun-types"], "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, - "skipLibCheck": true + "skipLibCheck": true, + "noErrorTruncation": true } }