{"id":13673300,"url":"https://github.com/justjavac/typescript-deno-plugin","last_synced_at":"2025-04-28T09:30:33.683Z","repository":{"id":48092621,"uuid":"174051698","full_name":"justjavac/typescript-deno-plugin","owner":"justjavac","description":"Deno language service plugin for TypeScript","archived":true,"fork":false,"pushed_at":"2020-09-04T11:15:54.000Z","size":402,"stargazers_count":201,"open_issues_count":8,"forks_count":12,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-18T08:21:30.847Z","etag":null,"topics":["deno","typescript","typescript-library","typescript-plugin"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/justjavac.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-06T01:57:00.000Z","updated_at":"2024-10-25T00:19:00.000Z","dependencies_parsed_at":"2022-08-12T18:30:49.794Z","dependency_job_id":null,"html_url":"https://github.com/justjavac/typescript-deno-plugin","commit_stats":null,"previous_names":[],"tags_count":35,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justjavac%2Ftypescript-deno-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justjavac%2Ftypescript-deno-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justjavac%2Ftypescript-deno-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justjavac%2Ftypescript-deno-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/justjavac","download_url":"https://codeload.github.com/justjavac/typescript-deno-plugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251284852,"owners_count":21564679,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["deno","typescript","typescript-library","typescript-plugin"],"created_at":"2024-08-02T10:00:33.098Z","updated_at":"2025-04-28T09:30:31.241Z","avatar_url":"https://github.com/justjavac.png","language":"TypeScript","readme":"# **MOVE TO \u003chttps://github.com/denoland/vscode_deno/tree/master/typescript-deno-plugin\u003e**\n\n-----------\n\n# typescript-deno-plugin\n\n\u003e Deno language service plugin for TypeScript.\n\n[![npm package](https://nodei.co/npm/typescript-deno-plugin.png?downloads=true\u0026downloadRank=true\u0026stars=true)](https://nodei.co/npm/typescript-deno-plugin/)\n\n[![Build Status](https://travis-ci.com/justjavac/typescript-deno-plugin.svg?branch=master)](https://travis-ci.com/justjavac/typescript-deno-plugin)\n[![NPM version](https://img.shields.io/npm/v/typescript-deno-plugin.svg)](https://www.npmjs.com/package/typescript-deno-plugin)\n[![NPM Downloads](https://img.shields.io/npm/dm/typescript-deno-plugin.svg?style=flat)](https://npmcharts.com/compare/typescript-deno-plugin?minimal=true)\n[![Install Size](https://packagephobia.now.sh/badge?p=typescript-deno-plugin)](https://packagephobia.now.sh/result?p=typescript-deno-plugin)\n\n## Editor Support\n\nThis plugin requires TypeScript 2.3 or later. It can provide intellisense in TypeScript files within any editors that uses TypeScript to power their language features.\n\n### With VS Code\n\nThe simplest way to use this plugin is to install the [TypeScript Deno Plugin VS Code extension](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno). This extension enables the plugin when using VS Code's version of TypeScript.\n\nIf you are using a workspace version of TypeScript, you must manually install the plugin alongside the version of TypeScript in your workspace.\n\n**use npm**:\n\n```bash\nnpm install --save-dev typescript-deno-plugin typescript\n```\n\nor **use yarn**:\n\n```bash\nyarn add -D typescript-deno-plugin typescript\n```\n\n### With JetBrains IDEs\n\nPrerequisite: Follow manual installation instructions as described in [VSCode install](#with-vs-code).\n\n1. Open TypScript preferences:\n\n`Preferences | Languages \u0026 Frameworks | TypeScript`\n\n2. Change the TypeScript path to the local installed typescript path e.g. `~/myapp/node_modules/typescript`\n\n*Tested with WebStorm. Hypothetically, should run in all JetBrains IDEs.*\n\n### Configuration\n\nAfter install typescript-deno-plugin, Then you can add a `plugins` section to your [tsconfig.json](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html).\n\n```json\n{\n  \"compilerOptions\": {\n    \"plugins\": [\n      {\n        \"name\": \"typescript-deno-plugin\",\n        \"enable\": true, // default is `true`\n        \"importmap\": \"import_map.json\"\n      }\n    ]\n  }\n}\n```\n\nFinally, run the `Select TypeScript version` command in VS Code to switch to use the workspace version of TypeScript for VS Code's JavaScript and TypeScript language support. You can find more information about managing typescript versions [in the VS Code documentation](https://code.visualstudio.com/Docs/languages/typescript#_using-newer-typescript-versions).\n\n### With Visual Studio\n\nThis plugin works Visual Studio 2017 using the TypeScript 2.3+ SDK.\n\nFirst install the plugin in your project.\n\n**use npm**:\n\n```bash\nnpm install --save-dev typescript-deno-plugin typescript\n```\n\nor **use yarn**:\n\n```bash\nyarn add -D typescript-deno-plugin typescript\n```\n\nThen add a plugins section to your [tsconfig.json](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html).\n\n```json\n{\n  \"compilerOptions\": {\n    \"plugins\": [\n      {\n        \"name\": \"typescript-deno-plugin\"\n      }\n    ]\n  }\n}\n```\n\nThen reload your project to make sure the plugin has been loaded properly.\n\n### With Atom\n\nThis plugin works with the [Atom TypeScript plugin](https://atom.io/packages/atom-typescript).\n\nFirst install the plugin and a copy of TypeScript in your workspace.\n\n**use npm**:\n\n```bash\nnpm install --save-dev typescript-deno-plugin typescript\n```\n\nor **use yarn**:\n\n```bash\nyarn add -D typescript-deno-plugin typescript\n```\n\nThen add a plugins section to your [tsconfig.json](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html).\n\n```json\n{\n  \"compilerOptions\": {\n    \"plugins\": [\n      {\n        \"name\": \"typescript-deno-plugin\"\n      }\n    ]\n  }\n}\n```\n\nThen restart Atom.\n\n### Credits\n\n- [justjavac](https://github.com/justjavac)\n\n### License\n\ntypescript-deno-plugin is released under the MIT License. See the bundled [LICENSE](./LICENSE) file for details.\n","funding_links":[],"categories":["Uncategorized","Tools","基础设施"],"sub_categories":["Uncategorized","Online Playgrounds","Assistants","Deno 源"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustjavac%2Ftypescript-deno-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustjavac%2Ftypescript-deno-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustjavac%2Ftypescript-deno-plugin/lists"}