{"id":43316901,"url":"https://github.com/zed-extensions/tsgo","last_synced_at":"2026-02-01T22:05:01.827Z","repository":{"id":316828708,"uuid":"988495410","full_name":"zed-extensions/tsgo","owner":"zed-extensions","description":"Extension for Zed to support TypeScript Native","archived":false,"fork":false,"pushed_at":"2025-12-29T17:29:33.000Z","size":38,"stargazers_count":146,"open_issues_count":8,"forks_count":8,"subscribers_count":6,"default_branch":"main","last_synced_at":"2026-01-01T22:37:48.357Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zed-extensions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-05-22T16:20:43.000Z","updated_at":"2025-12-29T17:29:37.000Z","dependencies_parsed_at":"2025-09-27T01:23:42.850Z","dependency_job_id":null,"html_url":"https://github.com/zed-extensions/tsgo","commit_stats":null,"previous_names":["zed-extensions/tsgo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zed-extensions/tsgo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Ftsgo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Ftsgo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Ftsgo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Ftsgo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zed-extensions","download_url":"https://codeload.github.com/zed-extensions/tsgo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zed-extensions%2Ftsgo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28992670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T22:01:47.507Z","status":"ssl_error","status_checked_at":"2026-02-01T21:58:37.335Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-01T22:05:01.258Z","updated_at":"2026-02-01T22:05:01.818Z","avatar_url":"https://github.com/zed-extensions.png","language":"Rust","funding_links":[],"categories":["⭐ Top Extensions"],"sub_categories":[],"readme":"# tsgo: Native TypeScript Compiler Integration for Zed\n\nThis extension integrates `tsgo`, Microsoft's native Go-based TypeScript compiler, into the Zed editor, delivering enhanced performance and efficiency for TypeScript development.\n\n## 🚀 Why `tsgo`?\n\nMicrosoft is transitioning the TypeScript compiler from its JavaScript implementation to a native version written in Go, aiming for significant performance improvements:\n\n- **Faster Compilation**: Achieves up to 10x speed improvements in large projects.\n- **Reduced Memory Usage**: Optimized memory handling in native execution.\n- **Improved Editor Performance**: Faster IntelliSense and language services.\n- **Scalability**: Better handling of large codebases.\n\n\u003e _Example Benchmarks_:\n\u003e\n\u003e - **VS Code**: 77.8s → 7.5s (10.4x speedup)\n\u003e - **Playwright**: 11.1s → 1.1s (10.1x speedup)\n\u003e - **TypeORM**: 17.5s → 1.3s (13.5x speedup)\n\u003e\n\u003e _Source: [Microsoft Developer Blog](https://devblogs.microsoft.com/typescript/typescript-native-port/)_\n\n## 🛠 Installation\n\n1. Open Zed's Extensions page.\n2. Search for `tsgo` and install the extension.\n\n## ⚙️ Configuration\n\n_Note_: `tsgo` is currently in preview and may not support all features of the standard `tsc` compiler.\n\n### Basic Setup\n\nEnable `tsgo` in your Zed settings:\n\n```json\n{\n  \"languages\": {\n    \"TypeScript\": {\n      \"language_servers\": [\"tsgo\"]\n    }\n  }\n}\n```\n\nYou can also use `tsgo` in tandem with other language servers (e.g. `typescript-language-server` or `vtsls`). Zed will use `tsgo` for features it supports and fallback to the next language server in the list for unsupported features.\nTo do that with `vtsls`, use:\n\n```json\n{\n  \"languages\": {\n    \"TypeScript\": {\n      \"language_servers\": [\"tsgo\", \"vtsls\"]\n    }\n  }\n}\n```\n\n### Advanced Configuration\n\n#### Specifying a Package Version\n\nBy default, the extension installs and uses the latest version of the `@typescript/native-preview` [npm package](https://www.npmjs.com/package/@typescript/native-preview?activeTab=versions). To pin a specific version:\n\n```json\n{\n  \"lsp\": {\n    \"tsgo\": {\n      \"settings\": {\n        \"package_version\": \"7.0.0-dev.20251029.1\"\n      }\n    }\n  }\n}\n```\n\nThis is useful for:\n\n- Ensuring consistent behavior across the project\n- Testing specific versions\n- Avoiding automatic updates that might introduce issues\n\n## 🧪 Status\n\nThis extension is in early development stages. While it offers significant performance benefits, some features may be incomplete or unstable. Contributions and feedback are welcome to improve its functionality.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzed-extensions%2Ftsgo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzed-extensions%2Ftsgo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzed-extensions%2Ftsgo/lists"}