DEV Community

Discussion on: React is awesome but have you tried fresh?

Collapse
 
tqbit profile image
tq-bit

Fresh looks pretty cool. Out of curiousity: Could you find some tooling that helps with Deno imports? VSCode's intellisense alone doesn't cut it and shows me one error after the other when I try and fiddle around with Deno

Collapse
 
bherbruck profile image
bherbruck

If you have docker installed, use the official deno devcontainer, it has everything set up

Collapse
 
asheeshh profile image
ashish • Edited
  1. Install the official deno extension for vsc.

  2. create a .vscode folder in the project dir with settings.json file, put the following content inside it -

{
  "deno.enable": true,
  "deno.lint": true
}
Enter fullscreen mode Exit fullscreen mode

this is the basic config, you can learn more here.

  1. for finding packages, use deno.land/x