@ttsc/wasm 0.15.10 → 0.16.0

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/dist/ttsc.wasm CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttsc/wasm",
3
- "version": "0.15.10",
3
+ "version": "0.16.0",
4
4
  "description": "Build in-browser ttsc playgrounds. Compose ttsc + typescript-go with your own plugins via the Go host helper.",
5
5
  "main": "lib/src/index.js",
6
6
  "types": "lib/src/index.d.ts",
@@ -38,12 +38,12 @@
38
38
  "homepage": "https://ttsc.dev",
39
39
  "devDependencies": {
40
40
  "@types/node": "^25.3.0",
41
- "@typescript/native-preview": "7.0.0-dev.20260617.2",
42
- "rimraf": "^6.1.2"
41
+ "rimraf": "^6.1.2",
42
+ "typescript": "7.0.1-rc"
43
43
  },
44
44
  "scripts": {
45
- "build": "node build/build-wasm.cjs && rimraf lib && tsgo -p .",
45
+ "build": "node build/build-wasm.cjs && rimraf lib && tsc -p .",
46
46
  "build:wasm": "node build/build-wasm.cjs",
47
- "build:ts": "rimraf lib && tsgo -p ."
47
+ "build:ts": "rimraf lib && tsc -p ."
48
48
  }
49
49
  }
@@ -2,7 +2,7 @@
2
2
  //
3
3
  // Minimal shim of tsgo's internal/lsp package. Hand-written instead of
4
4
  // generated so the surface stays narrow for custom in-process host
5
- // experiments. The shipped ttscserver wraps `tsgo --lsp --stdio` as an
5
+ // experiments. The shipped ttscserver wraps `tsc --lsp --stdio` as an
6
6
  // external process and does not import this package. The marker on the
7
7
  // first line tells gen_shims to skip this file.
8
8
  package lsp