diff --git a/packages/logger/tsconfig.json b/packages/logger/tsconfig.json index 3977616..2e98055 100644 --- a/packages/logger/tsconfig.json +++ b/packages/logger/tsconfig.json @@ -1,8 +1,6 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "module": "commonjs", - "target": "es5", "outDir": "dist" }, "exclude": [ diff --git a/tsconfig.base.json b/tsconfig.base.json index 879de35..51d3ac3 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -4,7 +4,7 @@ "allowUnreachableCode": false, "allowUnusedLabels": false, "declaration": true, - "declarationMap": true, + "declarationMap": false, "esModuleInterop": true, "moduleResolution": "node", "noImplicitReturns": true, @@ -15,7 +15,7 @@ "allowJs": true, "sourceMap": false, "strict": true, - "target": "es5", - "module": "commonjs", + "target": "ES2017", // Follow NodeJS oldest supported LTS + "module": "commonjs" } }