@boperators/plugin-ts-language-server 0.1.0 → 0.1.4

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 +2 -0
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # @boperators/plugin-ts-language-server
2
2
 
3
+ ![Sym.JS logo](https://github.com/DiefBell/boperators/blob/653ea138f4dcd1e6b4dd112133a4942f70e91fb3/logo.png)
4
+
3
5
  TypeScript Language Server plugin for [boperators](https://www.npmjs.com/package/boperators) - provides IDE support with source mapping.
4
6
 
5
7
  This plugin transforms operator overloads in the background and remaps positions between original and transformed source, so IDE features (hover, go-to-definition, diagnostics, completions, etc.) work correctly even though the language server sees the transformed code.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boperators/plugin-ts-language-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.4",
4
4
  "license": "MIT",
5
5
  "description": "TypeScript Language Server plugin for boperators - IDE support with source mapping.",
6
6
  "repository": {
@@ -33,7 +33,10 @@
33
33
  "dist"
34
34
  ],
35
35
  "peerDependencies": {
36
- "boperators": "0.1.0",
36
+ "boperators": "0.1.4",
37
37
  "typescript": ">=5.0.0 <5.10.0"
38
+ },
39
+ "devDependencies": {
40
+ "boperators": "file:../../package"
38
41
  }
39
42
  }