@djodjonx/neosyringe-lsp 0.1.0 → 0.2.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/README.md +19 -2
- package/dist/index.cjs +1161 -105
- package/dist/index.d.cts +0 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @djodjonx/neosyringe-lsp
|
|
2
2
|
|
|
3
|
-
TypeScript Language Service Plugin for NeoSyringe. Provides real-time error detection in
|
|
3
|
+
TypeScript Language Service Plugin for NeoSyringe. Provides real-time error detection in your IDE.
|
|
4
4
|
|
|
5
5
|
## Setup
|
|
6
6
|
|
|
@@ -14,4 +14,21 @@ Add to `tsconfig.json`:
|
|
|
14
14
|
}
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
## IDE Configuration
|
|
18
|
+
|
|
19
|
+
### VS Code ✅
|
|
20
|
+
Works automatically. Select "Use Workspace Version" for TypeScript.
|
|
21
|
+
|
|
22
|
+
### IntelliJ IDEA / WebStorm ⚠️
|
|
23
|
+
**Requires manual activation:**
|
|
24
|
+
1. Settings → Languages & Frameworks → TypeScript
|
|
25
|
+
2. Check "TypeScript Language Service"
|
|
26
|
+
3. Restart TypeScript Service
|
|
27
|
+
|
|
28
|
+
⚠️ IntelliJ Community Edition NOT supported.
|
|
29
|
+
|
|
30
|
+
**See [INTELLIJ.md](./INTELLIJ.md) for details.**
|
|
31
|
+
|
|
32
|
+
## Documentation
|
|
33
|
+
|
|
34
|
+
See [IDE Plugin Guide](https://djodjonx.github.io/neosyringe/guide/ide-plugin).
|