Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'
buttercubz opened this issue · 3 comments
buttercubz commented
buttercubz commented
ok seems to work, apparently it was a problem with the cache
ebebbington commented
@buttercubz I'd recommend using deno.land or nest.land versioned imports because it can happen that we add a bug into master
, and your app will fail without you even changing any code:
import { Server } from "https://deno.land/x/wocket@v0.6.2/mod.ts"
import { Server } from "https://x.nest.land/wocket@0.6.2/mod.ts"
buttercubz commented
@buttercubz I'd recommend using deno.land or nest.land versioned imports because it can happen that we add a bug into
master
, and your app will fail without you even changing any code:import { Server } from "https://deno.land/x/wocket@v0.6.2/mod.ts" import { Server } from "https://x.nest.land/wocket@0.6.2/mod.ts"
oh thanks