Skip to content

Commit

Permalink
Fix order in baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewbranch committed Mar 7, 2023
1 parent cdfdfac commit f02c5ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/baselines/reference/api/tsserverlibrary.d.ts
Expand Up @@ -6991,13 +6991,13 @@ declare namespace ts {
}
enum ModuleResolutionKind {
Classic = 1,
Node10 = 2,
/**
* @deprecated
* `NodeJs` was renamed to `Node10` to better reflect the version of Node that it targets.
* Use the new name or consider switching to a modern module resolution target.
*/
NodeJs = 2,
Node10 = 2,
Node16 = 3,
NodeNext = 99,
Bundler = 100
Expand Down
2 changes: 1 addition & 1 deletion tests/baselines/reference/api/typescript.d.ts
Expand Up @@ -3048,13 +3048,13 @@ declare namespace ts {
}
enum ModuleResolutionKind {
Classic = 1,
Node10 = 2,
/**
* @deprecated
* `NodeJs` was renamed to `Node10` to better reflect the version of Node that it targets.
* Use the new name or consider switching to a modern module resolution target.
*/
NodeJs = 2,
Node10 = 2,
Node16 = 3,
NodeNext = 99,
Bundler = 100
Expand Down

0 comments on commit f02c5ea

Please sign in to comment.