Skip to content

Commit

Permalink
workaround typescript breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeagle committed Jun 29, 2024
1 parent b50127e commit bb21ec1
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
8 changes: 5 additions & 3 deletions e2e/external_dep/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"compilerOptions": {
"composite": true,
},
"compilerOptions": {
"composite": true
},
// Workaround https://github.com/microsoft/TypeScript/issues/59036
"exclude": []
}
8 changes: 5 additions & 3 deletions e2e/worker/composite/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"compilerOptions": {
"composite": true,
}
}
"composite": true
},
// Workaround https://github.com/microsoft/TypeScript/issues/59036
"exclude": []
}
6 changes: 4 additions & 2 deletions e2e/worker/feature/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@
"module": "ES2020",
"moduleResolution": "node",
"lib": ["ES2015"]
}
}
},
// Workaround https://github.com/microsoft/TypeScript/issues/59036
"exclude": []
}
9 changes: 4 additions & 5 deletions e2e/worker/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
"compilerOptions": {
"module": "ES2020",
"moduleResolution": "node",
"lib": [
"ES2015",
"DOM"
]
}
"lib": ["ES2015", "DOM"]
},
// Workaround https://github.com/microsoft/TypeScript/issues/59036
"exclude": []
}

0 comments on commit bb21ec1

Please sign in to comment.