Skip to content

Commit

Permalink
chore: test removing sourcemap
Browse files Browse the repository at this point in the history
  • Loading branch information
Christiaan Landman authored and Christiaan Landman committed May 6, 2024
1 parent 7a05cae commit c4c7dfb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .changeset/hip-meals-sin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@powersync/common": patch
"@powersync/vue": patch
"@powersync/web": patch
---

test disabled sourcemaps
2 changes: 1 addition & 1 deletion packages/common/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lib": ["esnext"],
"module": "esnext",
"declaration": true,
"sourceMap": true,
"sourceMap": false,
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/vue/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"outDir": "./lib",
"lib": ["esnext", "DOM"],
"module": "esnext",
"sourceMap": true,
"sourceMap": false,
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/web/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c4c7dfb

Please sign in to comment.