Skip to content

Commit

Permalink
fix webpack tree shaking
Browse files Browse the repository at this point in the history
  • Loading branch information
k-jiang committed Feb 22, 2024
1 parent d7abe31 commit 987fee6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion extension/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"module": "CommonJS",
"module": "ES6",
"moduleResolution": "Node",
"target": "ES2020",
"lib": [
"ES2020",
Expand Down
4 changes: 2 additions & 2 deletions server/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"compilerOptions": {
"module": "CommonJS",
"module": "ES6",
"moduleResolution": "Node",
"target": "ES2020",
"lib": [
"ES2020",
"WebWorker"
],
"outDir": "out",
"rootDir": "src",
"moduleResolution": "node",
"sourceMap": true,
"strict": true
},
Expand Down
3 changes: 2 additions & 1 deletion utils/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"module": "CommonJS",
"module": "ES6",
"moduleResolution": "Node",
"target": "ES5",
"lib": [
"ES2021"
Expand Down
3 changes: 2 additions & 1 deletion webview/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"module": "CommonJS",
"module": "ES6",
"moduleResolution": "Node",
"target": "ES5",
"lib": [
"ES2021",
Expand Down

0 comments on commit 987fee6

Please sign in to comment.