@ttsc/banner 0.15.11 → 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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  Install `ttsc` and TypeScript-Go, then the banner plugin:
12
12
 
13
13
  ```bash
14
- npm install -D ttsc @typescript/native-preview
14
+ npm install -D ttsc typescript@rc
15
15
  npm install -D @ttsc/banner
16
16
  ```
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ttsc/banner",
3
- "version": "0.15.11",
3
+ "version": "0.16.0",
4
4
  "description": "First-party ttsc plugin that adds package-documentation JSDoc banners during emit.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -33,9 +33,9 @@
33
33
  ],
34
34
  "devDependencies": {
35
35
  "@types/node": "^25.3.0",
36
- "@typescript/native-preview": "7.0.0-dev.20260618.1",
37
36
  "rimraf": "^6.1.2",
38
- "ttsc": "0.15.11"
37
+ "typescript": "7.0.1-rc",
38
+ "ttsc": "0.16.0"
39
39
  },
40
40
  "repository": {
41
41
  "type": "git",
@@ -48,6 +48,6 @@
48
48
  },
49
49
  "homepage": "https://ttsc.dev",
50
50
  "scripts": {
51
- "build": "rimraf lib && tsgo"
51
+ "build": "rimraf lib && tsc"
52
52
  }
53
53
  }