From 78c98dd54b4e0e58682554ac5d8c9a23e0941398 Mon Sep 17 00:00:00 2001 From: Andrei O Date: Wed, 24 Jan 2024 02:48:42 +0200 Subject: [PATCH] chore: disable sourcemaps --- tsconfig.json | 2 +- vite.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c70d8fe..3222360 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,7 +9,7 @@ "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, - "sourceMap": true, + "sourceMap": false, "baseUrl": ".", "types": [ "chrome", diff --git a/vite.config.ts b/vite.config.ts index 13bee50..8379f88 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -30,7 +30,7 @@ export default defineConfig({ ['eval-sandbox']: 'eval-sandbox.html', }, }, - sourcemap: true, + sourcemap: false, chunkSizeWarningLimit: 1000, commonjsOptions: { transformMixedEsModules: true