From 4772257c6e7e07575be73bcbf8b57024cb354015 Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Thu, 14 Dec 2023 23:24:39 -0500 Subject: [PATCH] Update tsconfig --- tsconfig.base.json | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index 5f6b005b..aac501f8 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,12 +1,14 @@ { "compilerOptions": { - "target": "ES2020", - "moduleResolution": "Node", + "target": "es6", + "module": "node16", + "types": [], "declaration": true, - "strict": true, - "allowSyntheticDefaultImports": true, + "outDir": "lib", + "isolatedModules": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, - "types": [] + "strict": true, + "skipLibCheck": false } }