From ac6ffd53d707dd3121cd693619a1f66cc48e7bc2 Mon Sep 17 00:00:00 2001 From: Justin Willis Date: Wed, 5 Aug 2020 09:15:48 -0700 Subject: [PATCH] chore(): remove source maps --- rollup.config.js | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rollup.config.js b/rollup.config.js index 13e7c95..b998c6d 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -9,7 +9,7 @@ export default { output: { file: 'dist/pwa-install.js', format: 'es', - sourcemap: true + sourcemap: false }, plugins: [ resolve(), diff --git a/tsconfig.json b/tsconfig.json index e7136a6..f1e9251 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,7 @@ "outDir": "build", "declaration": true, "esModuleInterop": true, - "sourceMap": true, + "sourceMap": false, "rootDir": "src" },