@ttsc/graph 0.17.2 → 0.17.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.
- package/README.md +2 -2
- package/lib/server/createServer.js +446 -446
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -15,12 +15,12 @@ For why I built it, how it works in depth, and how it compares to `codegraph`, `
|
|
|
15
15
|
## Setup
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
npm install -D ttsc @ttsc/graph typescript
|
|
18
|
+
npm install -D ttsc @ttsc/graph typescript
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
`@ttsc/graph` reads the graph from the program `ttsc` type-checked, so install the two together.
|
|
22
22
|
|
|
23
|
-
`ttsc` runs on the
|
|
23
|
+
`ttsc` runs on the native TypeScript 7 compiler from the `typescript` package. It does not run on the legacy TypeScript v6.x compiler.
|
|
24
24
|
|
|
25
25
|
Add the server to your agent's MCP config, once. For Claude Code, that is a `.mcp.json` in your project root:
|
|
26
26
|
|