atom-ide-deno

JavaScript and TypeScript language support with deno for Atom-IDE

ayame113

1,640

3

1.26.0

MIT

GitHub

This package consumes the following services:

Translations: English (en) 日本語 (ja)

atom-ide-deno

CI Dependency Status apm apm

Javascript and TypeScript language support for Atom-IDE, powered by the deno language server.

This is a package produced by the community (not the deno team).

screen shot

How to use

  1. install deno 1.6 or higher
  2. install this package
  3. install atom-ide-base package

⚠️ atom-ide-ui package has moved to atom-ide-base package.

⚠️ The atom-ide-javascript package is for Node.js. It has nothing to do with this extension.

Please see here to complete setting.

Please see here for atom-IDE.

Installation

Settings > Install > search atom-ide-deno > install button

or run the following from the command line,

apm install atom-ide-deno

function

Only features available in both the atom-languageclient implementation list and the deno implementation list are available.

settings

The configuration of the settings is similar to vscode_deno.

tips

How to write tsconfig.json to enable dom in lsp

{
  "compilerOptions": {
    "allowJs": true,
    "esModuleInterop": true,
    "experimentalDecorators": true,
    "inlineSourceMap": true,
    "isolatedModules": true,
    "jsx": "react",
    "lib": ["deno.window", "dom", "esnext"],
    "module": "esnext",
    "strict": true,
    "target": "esnext",
    "useDefineForClassFields": true
  }
}

How to write an importMap that matches the root to the project folder (place it directly under the project folder)

{
	"imports": {
		"/": "./",
		"./": "./"
	}
}

Use different settings for each project

Please use external packages such as project-config and atomic-management.

Debug mode

Open the console with ctrl-shift-i and enter the following command.

atom.packages.activePackages['atom-ide-deno'].mainModule.isDebug = true

⚠️ After editing the importMap or tsconfig, either manually restart the editor or edit the options and restart the LSP.

Contribution

Feel free to contribute. Feel free to contact us if you would like to take over the development of this package.

License

It is an MIT license.