typescript-go
typescript-go copied to clipboard
Staging repo for development of native port of TypeScript
### Extension Version 0.20251212.1 ### VS Code Version 1.108.0-insider (Universal) ### Operating system Version macOS ### Steps to reproduce 1. Open a TS file in VS Code 2. In your...
For a project: ```ts // abc.ts export function abc() { } ``` ```ts // other.ts import { abc } from "./abc"; ``` The references code lens currently shows `0` references...
1. Create two files: ```ts // abc.ts /** * @deprecated */ export function abc() { } abc(); ``` ```ts // other.ts import { abc } from "./abc"; abc() xyz; ```...
VS Code includes some very basic support for IntelliSense in tsconfig/jsconfig files. This includes providing document links for `extends`, `files`, and `references` in these files: This currently requires a fair...