
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
typescript-deno-plugin
Advanced tools
Deno language service plugin for TypeScript.
This 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.
The simplest way to use this plugin is to install the TypeScript Deno Plugin VS Code extension. This extension enables the plugin when using VS Code's version of TypeScript.
If you are using a workspace version of TypeScript, you must manually install the plugin alongside the version of TypeScript in your workspace.
use npm:
npm install --save-dev typescript-deno-plugin typescript
or use yarn:
yarn add -D typescript-deno-plugin typescript
Prerequisite: Follow manual installation instructions as described in VSCode install.
Preferences | Languages & Frameworks | TypeScript
~/myapp/node_modules/typescriptTested with WebStorm. Hypothetically, should run in all JetBrains IDEs.
After install typescript-deno-plugin, Then you can add a plugins section to your tsconfig.json.
{
"compilerOptions": {
"plugins": [
{
"name": "typescript-deno-plugin",
"enable": true, // default is `true`
"importmap": "import_map.json"
}
]
}
}
Finally, 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.
This plugin works Visual Studio 2017 using the TypeScript 2.3+ SDK.
First install the plugin in your project.
use npm:
npm install --save-dev typescript-deno-plugin typescript
or use yarn:
yarn add -D typescript-deno-plugin typescript
Then add a plugins section to your tsconfig.json.
{
"compilerOptions": {
"plugins": [
{
"name": "typescript-deno-plugin"
}
]
}
}
Then reload your project to make sure the plugin has been loaded properly.
This plugin works with the Atom TypeScript plugin.
First install the plugin and a copy of TypeScript in your workspace.
use npm:
npm install --save-dev typescript-deno-plugin typescript
or use yarn:
yarn add -D typescript-deno-plugin typescript
Then add a plugins section to your tsconfig.json.
{
"compilerOptions": {
"plugins": [
{
"name": "typescript-deno-plugin"
}
]
}
}
Then restart Atom.
typescript-deno-plugin is released under the MIT License. See the bundled LICENSE file for details.
FAQs
Deno language service plugin for TypeScript
We found that typescript-deno-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.