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 7b986cf
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 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": []
}

0 comments on commit 7b986cf

Please sign in to comment.