From 91e41af63d417b0a4ab4eea82f12225b88df20a8 Mon Sep 17 00:00:00 2001 From: leibale Date: Thu, 8 Jul 2021 18:31:05 -0400 Subject: [PATCH] remove "lib" from ts compiler options --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index eb56bb2294..291599ce22 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,7 @@ { "compilerOptions": { "strict": true, - "lib": ["es2019", "es2020.bigint", "es2020.string", "es2020.symbol.wellknown"], - "target": "es2019", + "target": "ES2019", "module": "CommonJS", "moduleResolution": "Node", "esModuleInterop": true,