@typescript-deploys/pr-build 5.0.0-pr-52328-9 → 5.0.0-pr-51837-26
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/README.md +2 -0
- package/lib/cancellationToken.js +0 -5
- package/lib/lib.dom.d.ts +2077 -2300
- package/lib/lib.dom.iterable.d.ts +0 -14
- package/lib/lib.es2022.d.ts +0 -1
- package/lib/lib.es5.d.ts +5 -3
- package/lib/lib.esnext.d.ts +1 -1
- package/lib/lib.webworker.d.ts +1632 -1670
- package/lib/tsc.js +4483 -18777
- package/lib/tsserver.js +6236 -25488
- package/lib/tsserverlibrary.d.ts +97 -219
- package/lib/tsserverlibrary.js +6277 -25466
- package/lib/typescript.d.ts +90 -155
- package/lib/typescript.js +5897 -23823
- package/lib/typingsInstaller.js +1323 -3494
- package/lib/watchGuard.js +0 -4
- package/package.json +3 -6
- package/lib/lib.decorators.d.ts +0 -357
- package/lib/lib.decorators.legacy.d.ts +0 -24
- package/lib/lib.es2022.regexp.d.ts +0 -41
- package/lib/lib.es2023.array.d.ts +0 -344
- package/lib/lib.es2023.d.ts +0 -22
- package/lib/lib.es2023.full.d.ts +0 -25
package/README.md
CHANGED
|
@@ -33,6 +33,8 @@ There are many ways to [contribute](https://github.com/microsoft/TypeScript/blob
|
|
|
33
33
|
* Help each other in the [TypeScript Community Discord](https://discord.gg/typescript).
|
|
34
34
|
* Join the [#typescript](https://twitter.com/search?q=%23TypeScript) discussion on Twitter.
|
|
35
35
|
* [Contribute bug fixes](https://github.com/microsoft/TypeScript/blob/main/CONTRIBUTING.md).
|
|
36
|
+
* Read the archived language specification ([docx](https://github.com/microsoft/TypeScript/blob/main/doc/TypeScript%20Language%20Specification%20-%20ARCHIVED.docx?raw=true),
|
|
37
|
+
[pdf](https://github.com/microsoft/TypeScript/blob/main/doc/TypeScript%20Language%20Specification%20-%20ARCHIVED.pdf?raw=true), [md](https://github.com/microsoft/TypeScript/blob/main/doc/spec-ARCHIVED.md)).
|
|
36
38
|
|
|
37
39
|
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see
|
|
38
40
|
the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com)
|
package/lib/cancellationToken.js
CHANGED
|
@@ -30,10 +30,6 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
30
30
|
return to;
|
|
31
31
|
};
|
|
32
32
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
33
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
34
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
35
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
36
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
37
33
|
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
38
34
|
mod
|
|
39
35
|
));
|
|
@@ -81,7 +77,6 @@ function createCancellationToken(args) {
|
|
|
81
77
|
} else {
|
|
82
78
|
return {
|
|
83
79
|
isCancellationRequested: () => pipeExists(cancellationPipeName),
|
|
84
|
-
// TODO: GH#18217
|
|
85
80
|
setRequest: (_requestId) => void 0,
|
|
86
81
|
resetRequest: (_requestId) => void 0
|
|
87
82
|
};
|