#VSCode deno.json setup
1 messages · Page 1 of 1 (latest)
So if your imports look like this:
{
"imports": {
"oak": "https://deno.land/x/[email protected]/mod.ts"
}
}
then your code can simply be:
import { Application } from "oak";
oh, nice