From efa150c5bc2291c93ffee003cee9bd825a4b5a44 Mon Sep 17 00:00:00 2001 From: Alexey Velikiy Date: Thu, 26 Nov 2020 23:51:25 +0100 Subject: [PATCH] fx targets in ts confs --- tsconfig.bin.json | 3 +-- tsconfig.lib.json | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.bin.json b/tsconfig.bin.json index 9b909b6..5b92887 100644 --- a/tsconfig.bin.json +++ b/tsconfig.bin.json @@ -1,9 +1,8 @@ { "compilerOptions": { "sourceMap": true, - "module": "commonjs", "target": "es2015", - "declaration": true, + "declaration": false, "outFile": "bin/tsdb-kit.js" }, "include": [ "src/**/*" ], diff --git a/tsconfig.lib.json b/tsconfig.lib.json index fd11be7..d6fa508 100644 --- a/tsconfig.lib.json +++ b/tsconfig.lib.json @@ -1,6 +1,7 @@ { "compilerOptions": { "sourceMap": true, + "module": "commonjs", "target": "es2015", "declaration": true, "outDir": "lib"