@boperators/plugin-tsc 0.1.0 → 0.1.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 +2 -0
- package/logo.png +0 -0
- package/package.json +7 -3
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# @boperators/plugin-tsc
|
|
2
2
|
|
|
3
|
+

|
|
4
|
+
|
|
3
5
|
A [ts-patch](https://github.com/package/ts-patch) plugin that runs [boperators](https://www.npmjs.com/package/boperators) transformations during `tsc` compilation.
|
|
4
6
|
|
|
5
7
|
This plugin operates as a **Program Transformer** — it transforms your operator expressions before TypeScript type-checks the code, so the compiler sees valid function calls rather than unsupported operator usage on class types.
|
package/logo.png
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boperators/plugin-tsc",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ts-patch plugin for boperators - transforms operator overloads during tsc compilation.",
|
|
6
6
|
"repository": {
|
|
@@ -30,10 +30,14 @@
|
|
|
30
30
|
"package.json",
|
|
31
31
|
"README.md",
|
|
32
32
|
"license.txt",
|
|
33
|
-
"dist"
|
|
33
|
+
"dist",
|
|
34
|
+
"logo.png"
|
|
34
35
|
],
|
|
35
36
|
"peerDependencies": {
|
|
36
|
-
"boperators": "0.1.
|
|
37
|
+
"boperators": "0.1.3",
|
|
37
38
|
"typescript": ">=5.0.0 <5.10.0"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"boperators": "file:../../package"
|
|
38
42
|
}
|
|
39
43
|
}
|