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 } }