From df5d642fb38cc9caf7aee5feb48f63d6823fbc2f Mon Sep 17 00:00:00 2001 From: Alex Watson Date: Thu, 8 Dec 2022 10:35:39 -0500 Subject: [PATCH 1/4] Add sourceMap: false to cjs builder options --- tsconfig.lib-cjs.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.lib-cjs.json b/tsconfig.lib-cjs.json index 26b017ea..f94529fc 100644 --- a/tsconfig.lib-cjs.json +++ b/tsconfig.lib-cjs.json @@ -3,9 +3,10 @@ "compilerOptions": { "module": "commonjs", "target": "es5", - "outDir": "dist/cjs" + "outDir": "dist/cjs", + "sourceMap": false }, "exclude": [ "src/test" ] -} \ No newline at end of file +} From df74925f64c515afda35e806710cece368649961 Mon Sep 17 00:00:00 2001 From: Alex Watson Date: Thu, 8 Dec 2022 10:36:35 -0500 Subject: [PATCH 2/4] Add sourceMap: false to es2015 build config --- tsconfig.lib-es2015.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.lib-es2015.json b/tsconfig.lib-es2015.json index 47aa9778..6f70c158 100644 --- a/tsconfig.lib-es2015.json +++ b/tsconfig.lib-es2015.json @@ -3,9 +3,10 @@ "compilerOptions": { "module": "es2015", "target": "es2015", - "outDir": "dist/es2015" + "outDir": "dist/es2015", + "sourceMap": false }, "exclude": [ "src/test" ] -} \ No newline at end of file +} From c3afff1c9eec5969c63738159d89ad0e73cbd000 Mon Sep 17 00:00:00 2001 From: Alex Watson Date: Thu, 8 Dec 2022 10:37:06 -0500 Subject: [PATCH 3/4] Add sourceMap: false to esm build config --- tsconfig.lib-esm.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.lib-esm.json b/tsconfig.lib-esm.json index 98aebc8f..19e143d0 100644 --- a/tsconfig.lib-esm.json +++ b/tsconfig.lib-esm.json @@ -3,9 +3,10 @@ "compilerOptions": { "module": "es2015", "target": "es5", - "outDir": "dist/esm" + "outDir": "dist/esm", + "sourceMap": false }, "exclude": [ "src/test" ] -} \ No newline at end of file +} From 8db9f666f5d66329e8933c149eddcd29816665b8 Mon Sep 17 00:00:00 2001 From: Alex Watson Date: Thu, 8 Dec 2022 10:37:31 -0500 Subject: [PATCH 4/4] Update tsconfig.lib-esnext.json Add sourceMap: false to esnext config --- tsconfig.lib-esnext.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.lib-esnext.json b/tsconfig.lib-esnext.json index 70ab296c..257e6fc7 100644 --- a/tsconfig.lib-esnext.json +++ b/tsconfig.lib-esnext.json @@ -3,7 +3,8 @@ "compilerOptions": { "module": "esnext", "target": "esnext", - "outDir": "dist/esnext" + "outDir": "dist/esnext", + "sourceMap": false }, "exclude": [ "src/test"