typescript 5.0.4 → 5.1.0-beta

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.
package/lib/watchGuard.js CHANGED
@@ -47,7 +47,7 @@ var directoryName = process.argv[2];
47
47
  try {
48
48
  const watcher = fs.watch(directoryName, { recursive: true }, () => ({}));
49
49
  watcher.close();
50
- } catch (e) {
50
+ } catch {
51
51
  }
52
52
  process.exit(0);
53
53
  //# sourceMappingURL=watchGuard.js.map
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "typescript",
3
3
  "author": "Microsoft Corp.",
4
4
  "homepage": "https://www.typescriptlang.org/",
5
- "version": "5.0.4",
5
+ "version": "5.1.0-beta",
6
6
  "license": "Apache-2.0",
7
7
  "description": "TypeScript is a language for application scale JavaScript development",
8
8
  "keywords": [
@@ -26,7 +26,7 @@
26
26
  "tsserver": "./bin/tsserver"
27
27
  },
28
28
  "engines": {
29
- "node": ">=12.20"
29
+ "node": ">=14.17"
30
30
  },
31
31
  "files": [
32
32
  "bin",
@@ -54,7 +54,7 @@
54
54
  "@typescript-eslint/eslint-plugin": "^5.33.1",
55
55
  "@typescript-eslint/parser": "^5.33.1",
56
56
  "@typescript-eslint/utils": "^5.33.1",
57
- "azure-devops-node-api": "^11.2.0",
57
+ "azure-devops-node-api": "^12.0.0",
58
58
  "chai": "^4.3.7",
59
59
  "chalk": "^4.1.2",
60
60
  "chokidar": "^3.5.3",
@@ -78,7 +78,8 @@
78
78
  "ms": "^2.1.3",
79
79
  "node-fetch": "^3.2.10",
80
80
  "source-map-support": "^0.5.21",
81
- "typescript": "5.0.0-dev.20230112",
81
+ "tslib": "^2.5.0",
82
+ "typescript": "^5.0.2",
82
83
  "which": "^2.0.2"
83
84
  },
84
85
  "overrides": {
package/lib/README.md DELETED
@@ -1,5 +0,0 @@
1
- # Read This!
2
-
3
- **These files are not meant to be edited by hand.**
4
- If you need to make modifications, the respective files should be changed within the repository's top-level `src` directory.
5
- Running `hereby LKG` will then appropriately update the files in this directory.