Translations: English (en) 日本語 (ja)
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).
⚠️
atom-ide-ui
package was deprecated
⚠️ The
atom-ide-javascript
package is for Node.js. It has nothing to do with this extension.
Please see here for atom-IDE.
Settings > Install > search atom-ide-deno
> install button
or run the following from the command line,
apm install atom-ide-deno
Only features available in both the atom-languageclient implementation list and the deno implementation list are available.
The configuration of the settings is similar to vscode_deno.
{
"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
}
}
{
"imports": {
"/": "./",
"./": "./"
}
}
Please use external packages such as project-config and atomic-management.
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.
Feel free to contribute. Feel free to contact us if you would like to take over the development of this package.
It is an MIT license.
Good catch. Let us know what about this package looks wrong to you, and we'll investigate right away.