-
-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix multidimensional data pages baking logic
* Don't delete mdims in GrapherBaker * Delete old mdims in MultiDimBaker * Improve the console output * Document issue with TSConfig and getting ESNext types
- Loading branch information
Showing
6 changed files
with
91 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,10 +12,13 @@ | |
"declaration": true, | ||
"declarationMap": true, | ||
|
||
// We start with https://github.com/tsconfig/bases/blob/master/bases/node14.json then drop: | ||
// "lib": ["es2020"], | ||
// "target": "es2020", | ||
|
||
// To get newer APIs like Set.prototype.intersection(), we need to use | ||
// ESNext as a lib on Node 22 and current version of TypeScript | ||
// (5.7.2). However, this doesn't work with @types/[email protected], which | ||
// we are currently pinned to, to fix an unrelated bug with types in | ||
// Cloudflare Functions. | ||
// https://github.com/microsoft/TypeScript/issues/59919 | ||
// https://developers.cloudflare.com/workers/languages/typescript/#transitive-loading-of-typesnode-overrides-cloudflareworkers-types | ||
"lib": ["dom", "dom.iterable", "es2020", "es2021", "es2022", "es2023"], | ||
"target": "es2019", | ||
|
||
|