tsgo-wasm 2025.12.2 → 2025.12.3
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 +33 -6
- package/package.json +14 -14
- package/tsgo.wasm +0 -0
package/README.md
CHANGED
|
@@ -1,17 +1,22 @@
|
|
|
1
|
-
#
|
|
1
|
+
# TypeScript 7 WASM
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
[![npm version][npm-version-src]][npm-version-href]
|
|
4
|
+
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
5
|
+
[![Release][release-src]][release-href]
|
|
6
|
+
|
|
7
|
+
**Unofficial** WebAssembly (WASM) distribution of [TypeScript 7](https://github.com/microsoft/typescript-go), automatically built daily via GitHub Actions.
|
|
8
|
+
|
|
9
|
+
Use this version if your operating system or architecture is not supported by the native build, or if you need to run it in browsers.
|
|
10
|
+
|
|
11
|
+
Download the latest binaries from the [Releases page](https://github.com/sxzz/tsgo-wasm/releases).
|
|
5
12
|
|
|
6
13
|
Read more about the TypeScript 7 [here](https://devblogs.microsoft.com/typescript/typescript-native-port/)!
|
|
7
14
|
|
|
8
15
|
> [!WARNING]
|
|
9
|
-
> This is **NOT** an official distribution from the TypeScript official team.
|
|
16
|
+
> This is **NOT** an official distribution from the TypeScript official team, but all binaries are built directly from the official source code without any modifications via GitHub Actions.
|
|
10
17
|
|
|
11
18
|
## Usage
|
|
12
19
|
|
|
13
|
-
Use this version if your operating system or architecture is not supported by the native build, or if you need to run it in a browser.
|
|
14
|
-
|
|
15
20
|
```bash
|
|
16
21
|
npm install tsgo-wasm
|
|
17
22
|
|
|
@@ -19,6 +24,28 @@ npx tsgo-wasm -v
|
|
|
19
24
|
# Version 7.0.0-dev.20250519
|
|
20
25
|
```
|
|
21
26
|
|
|
27
|
+
## 🧯 Safety
|
|
28
|
+
|
|
29
|
+
The binaries are built through GitHub Actions using source code directly from the official TypeScript repository.
|
|
30
|
+
Our automated build process preserves the code integrity without any modifications.
|
|
31
|
+
The complete build workflow is transparent and open-source, available for inspection [here](./.github/workflows/release.yml).
|
|
32
|
+
|
|
33
|
+
We understand security concerns regarding unofficial binaries.
|
|
34
|
+
For additional peace of mind, you're welcome to fork this repository and execute the build workflow yourself.
|
|
35
|
+
|
|
36
|
+
## Credits
|
|
37
|
+
|
|
38
|
+
Thanks to Claude 3.7 Sonnet for helping me build the GitHub Actions workflow.
|
|
39
|
+
|
|
22
40
|
## License
|
|
23
41
|
|
|
24
42
|
The TypeScript project and this project both are licensed under the [Apache License 2.0](./LICENSE).
|
|
43
|
+
|
|
44
|
+
<!-- Badges -->
|
|
45
|
+
|
|
46
|
+
[npm-version-src]: https://img.shields.io/npm/v/tsgo-wasm.svg
|
|
47
|
+
[npm-version-href]: https://npmjs.com/package/tsgo-wasm
|
|
48
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/tsgo-wasm
|
|
49
|
+
[npm-downloads-href]: https://www.npmcharts.com/compare/tsgo-wasm?interval=30
|
|
50
|
+
[release-src]: https://github.com/sxzz/tsgo-wasm/actions/workflows/release.yml/badge.svg
|
|
51
|
+
[release-href]: https://github.com/sxzz/tsgo-wasm/actions/workflows/release.yml
|
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tsgo-wasm",
|
|
3
|
-
"version": "2025.12.2",
|
|
4
|
-
"description": "TypeScript Go for WASM",
|
|
5
3
|
"type": "module",
|
|
4
|
+
"version": "2025.12.3",
|
|
5
|
+
"description": "TypeScript 7 WebAssembly (WASM) distribution",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"homepage": "https://github.com/sxzz/tsgo-wasm#readme",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/sxzz/tsgo-wasm.git",
|
|
11
|
+
"directory": "packages/wasm"
|
|
12
|
+
},
|
|
6
13
|
"keywords": [
|
|
7
14
|
"typescript-go",
|
|
8
15
|
"typescript",
|
|
@@ -10,27 +17,20 @@
|
|
|
10
17
|
"go",
|
|
11
18
|
"wasm"
|
|
12
19
|
],
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/sxzz/tsgo-releases.git",
|
|
18
|
-
"directory": "packages/wasm"
|
|
20
|
+
"main": "tsgo.wasm",
|
|
21
|
+
"bin": {
|
|
22
|
+
"tsgo-wasm": "tsgo-wasm"
|
|
19
23
|
},
|
|
20
24
|
"files": [
|
|
21
25
|
"tsgo-wasm",
|
|
22
26
|
"tsgo.wasm"
|
|
23
27
|
],
|
|
24
|
-
"main": "tsgo.wasm",
|
|
25
|
-
"bin": {
|
|
26
|
-
"tsgo-wasm": "tsgo-wasm"
|
|
27
|
-
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public",
|
|
30
30
|
"tag": "latest"
|
|
31
31
|
},
|
|
32
32
|
"buildInfo": {
|
|
33
|
-
"date": "2025-12-
|
|
34
|
-
"commit": "
|
|
33
|
+
"date": "2025-12-03",
|
|
34
|
+
"commit": "6b60f4a327d3719168d6b686b6c0a4da9b7d2689"
|
|
35
35
|
}
|
|
36
36
|
}
|
package/tsgo.wasm
CHANGED
|
Binary file
|