@sourcegraph/scip-typescript
Version:
SCIP indexer for TypeScript and JavaScript
65 lines (44 loc) • 1.84 kB
Markdown
# Developing scip-typescript
Please note that the yarn version used by CI is `v1.22.19` - you should use this version as well to prevent lockfile conflicts.
## References
- VS Code is a good reference point for the "correct" behavior
for code navigation functionality.
- Keep a local checkout of Microsoft/TypeScript for checking out code examples.
Most TypeScript APIs are lacking in documentation,
so reading the code is the best way to understand how things work.
## Running tests
```sh
# Run snapshot tests
npm run test
# Update snapshot test outputs
npm run update-snapshots
```
## Debugging
### Print debugging
For print debugging, you can print types using:
```typescript
checker.typeToString(type)
```
TODO: Document how to print the AST for a file
TODO: Document how to print an individual AST node
## Skipping files/test for local development
Search for the query `"Uncomment below if you want to skip` to find places where
you can uncomment code to skip tests/files for a faster edit/test/debug feedback
loop during local development.
## Snapshotting arbitrary projects
```sh
cd /path/to/dir
DIR=/path/to/scip-typescript "$DIR/node_modules/.bin/tsx" "$DIR/src/main.ts" index # add --yarn-workspaces if applicable
lsif-typed index.scip > dump.lsif # from github.com/sourcegraph/sourcegraph/lib/codeintel/tools/lsif-typed
lsif-java snapshot-lsif # from github.com/sourcegraph/lsif-java
```
## Publishing a release
First, make sure you are on the main branch and have no dirty changes.
Next, run the `dev/bump-version` script to bump the version in package.json and
push a git tag to trigger a CI job.
```
./dev/bump-version VERSION_TO_RELEASE
# example: ./dev/bump-version 2.3.1
```
Once the release job has finished, create a GitHub release
https://github.com/sourcegraph/scip-typescript/releases/new