We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8393b79 commit 7946af8Copy full SHA for 7946af8
packages/replay-worker/tsconfig.json
@@ -4,7 +4,9 @@
4
"module": "esnext",
5
"lib": ["webworker", "scripthost"],
6
"esModuleInterop": true,
7
- "target": "es2018",
+ // Keep ES5 target for web worker compatibility
8
+ // Web worker code is embedded as strings and cannot be transpiled by user build tools
9
+ "target": "es5",
10
"strictPropertyInitialization": false
11
},
12
"include": ["src/**/*.ts"]
0 commit comments