From 5c681375bf49a323b4e9b0f3506ca97ef2be1555 Mon Sep 17 00:00:00 2001 From: Pete Karl II Date: Thu, 5 Sep 2024 10:56:26 -0400 Subject: [PATCH] limit tsconfg-cjs options to only those that need to be overridden --- tsconfig-cjs.json | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tsconfig-cjs.json b/tsconfig-cjs.json index 7e4e1b3..d8f3276 100644 --- a/tsconfig-cjs.json +++ b/tsconfig-cjs.json @@ -2,13 +2,6 @@ "extends": "./tsconfig-base.json", "compilerOptions": { "module": "CommonJS", - "target": "ES6", - "outDir": "./dist/cjs", - "rootDir": "./src", - "moduleResolution": "node", - "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "declaration": true + "outDir": "./dist/cjs" } }