From a5fbf8f482d35cfce6f683866f0c17af1eea356b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Holeczek?= Date: Tue, 7 Mar 2023 12:44:29 +0100 Subject: [PATCH] fix: wrong relative paths in source maps --- rollup.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rollup.config.js b/rollup.config.js index b43a195ef..52e631138 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -20,6 +20,7 @@ export default [ plugins: [ typescript({ exclude: ['**/__tests__/**'], + sourceMap: false, tsconfig: './tsconfig.cjs.json', }), ], @@ -38,6 +39,7 @@ export default [ plugins: [ typescript({ exclude: ['**/__tests__/**'], + sourceMap: false, tsconfig: './tsconfig.esm.json', }), ],