typescript 5.0.0-dev.20230226 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6991,6 +6991,12 @@ declare namespace ts {
6991
6991
  }
6992
6992
  enum ModuleResolutionKind {
6993
6993
  Classic = 1,
6994
+ /**
6995
+ * @deprecated
6996
+ * `NodeJs` was renamed to `Node10` to better reflect the version of Node that it targets.
6997
+ * Use the new name or consider switching to a modern module resolution target.
6998
+ */
6999
+ NodeJs = 2,
6994
7000
  Node10 = 2,
6995
7001
  Node16 = 3,
6996
7002
  NodeNext = 99,
@@ -8280,7 +8286,6 @@ declare namespace ts {
8280
8286
  negative: boolean;
8281
8287
  base10Value: string;
8282
8288
  }
8283
- function getNodeMajorVersion(): number | undefined;
8284
8289
  enum FileWatcherEventKind {
8285
8290
  Created = 0,
8286
8291
  Changed = 1,