From c4c7dfba66e638d428989d9003faca3ae24d67e5 Mon Sep 17 00:00:00 2001 From: Christiaan Landman Date: Mon, 6 May 2024 11:22:52 +0200 Subject: [PATCH] chore: test removing sourcemap --- .changeset/hip-meals-sin.md | 7 +++++++ packages/common/tsconfig.json | 2 +- packages/vue/tsconfig.json | 2 +- packages/web/tsconfig.json | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 .changeset/hip-meals-sin.md diff --git a/.changeset/hip-meals-sin.md b/.changeset/hip-meals-sin.md new file mode 100644 index 000000000..8bf86fd5f --- /dev/null +++ b/.changeset/hip-meals-sin.md @@ -0,0 +1,7 @@ +--- +"@powersync/common": patch +"@powersync/vue": patch +"@powersync/web": patch +--- + +test disabled sourcemaps diff --git a/packages/common/tsconfig.json b/packages/common/tsconfig.json index 3f9b79e0d..bbdd850a9 100644 --- a/packages/common/tsconfig.json +++ b/packages/common/tsconfig.json @@ -10,7 +10,7 @@ "lib": ["esnext"], "module": "esnext", "declaration": true, - "sourceMap": true, + "sourceMap": false, "moduleResolution": "node", "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, diff --git a/packages/vue/tsconfig.json b/packages/vue/tsconfig.json index 68af76b29..48c057e65 100644 --- a/packages/vue/tsconfig.json +++ b/packages/vue/tsconfig.json @@ -8,7 +8,7 @@ "outDir": "./lib", "lib": ["esnext", "DOM"], "module": "esnext", - "sourceMap": true, + "sourceMap": false, "moduleResolution": "node", "noFallthroughCasesInSwitch": true, "noImplicitReturns": true, diff --git a/packages/web/tsconfig.json b/packages/web/tsconfig.json index 10903ae17..dd9bfadab 100644 --- a/packages/web/tsconfig.json +++ b/packages/web/tsconfig.json @@ -13,7 +13,7 @@ "moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */, "outDir": "./lib" /* Redirect output structure to the directory. */, "skipLibCheck": true /* Skip type checking of declaration files. */, - "sourceMap": true /* Generates corresponding '.map' file. */, + "sourceMap": false /* Generates corresponding '.map' file. */, "strict": true /* Enable all strict type-checking options. */, "target": "es6" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */, "strictNullChecks": true