@ttsc/unplugin 0.15.11 → 0.16.1
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 +1 -1
- package/package.json +4 -6
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Use it when Vite, Rollup, esbuild, Webpack, Rspack, Next.js, Farm, or Bun owns t
|
|
|
13
13
|
Install `ttsc` and TypeScript-Go first. Then install the bundler adapter:
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
-
npm install -D ttsc @
|
|
16
|
+
npm install -D ttsc typescript@rc
|
|
17
17
|
npm install -D @ttsc/unplugin
|
|
18
18
|
```
|
|
19
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttsc/unplugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"description": "Bundler adapters for ttsc plugins.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/index.mjs",
|
|
@@ -92,9 +92,7 @@
|
|
|
92
92
|
"devDependencies": {
|
|
93
93
|
"@rollup/plugin-commonjs": "^29.0.2",
|
|
94
94
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
95
|
-
"@rollup/plugin-typescript": "^12.3.0",
|
|
96
95
|
"@types/node": "^25.3.0",
|
|
97
|
-
"@typescript/native-preview": "7.0.0-dev.20260618.1",
|
|
98
96
|
"esbuild": "^0.25.12",
|
|
99
97
|
"rimraf": "^6.1.2",
|
|
100
98
|
"rollup": "^4.60.3",
|
|
@@ -102,9 +100,9 @@
|
|
|
102
100
|
"rollup-plugin-node-externals": "^9.0.1",
|
|
103
101
|
"tinyglobby": "^0.2.16",
|
|
104
102
|
"tslib": "^2.8.1",
|
|
105
|
-
"typescript": "
|
|
103
|
+
"typescript": "7.0.1-rc",
|
|
106
104
|
"vite": "^7.1.12",
|
|
107
|
-
"ttsc": "0.
|
|
105
|
+
"ttsc": "0.16.1"
|
|
108
106
|
},
|
|
109
107
|
"repository": {
|
|
110
108
|
"type": "git",
|
|
@@ -118,6 +116,6 @@
|
|
|
118
116
|
"homepage": "https://ttsc.dev",
|
|
119
117
|
"sideEffects": false,
|
|
120
118
|
"scripts": {
|
|
121
|
-
"build": "rimraf lib &&
|
|
119
|
+
"build": "rimraf lib && tsc --emitDeclarationOnly && rollup -c"
|
|
122
120
|
}
|
|
123
121
|
}
|