ynwd
ynwd
Without NPM: ``` isolate start time: 619.82 ms ``` After using NPM: ``` isolate start time: 26.48 s ``` cc: @lucacasonato
> If you do something like this then you should be able to block it yourself before it opens a HTTP connection: > > ```js > const listener = Deno.listen({port,...
is there any update about this?
same here 1.38.3
> I don't have a more polite way to say this: VSCode + Deno is unusable. > > Intellisense works if you wait an unreasonable amount of time. Hovering over...
Still persist if i run `deno run -A --watch --unstable main.ts` and at the same time open the VScode.
# Deno Language Server Status ## Workspace Settings ```json { "enable": true, "disablePaths": [ "npm" ], "enablePaths": null, "cache": null, "cacheOnSave": false, "certificateStores": null, "config": null, "importMap": "import_map.json", "codeLens": {...
> Wow! Over 3s to get a response from TSC. That is definitely off. Could you share the project you are seeing this on? That would help us with debugging...
I try to use https://floating-ui.com/docs/react. But ESBUILD always complaint: ``` ✘ [ERROR] Module not found "https://esm.sh/@floating-ui/[email protected]?external=react,react-dom,react/jsx-runtime". [plugin deno-loader] uuid.tsx:3:28: 3 │ import { useFloating } from "@floating-ui/react"; ╵ ~~~~~~~~~~~~~~~~~~~~ error:...
Thanks @marvinhagemeister . The error completely disappeared after I set import_map like this: ```json "imports": { "react": "https://esm.sh/[email protected]/compat", "react-dom": "https://esm.sh/[email protected]/compat", "react/jsx-runtime": "https://esm.sh/[email protected]/jsx-runtime", "preact": "https://esm.sh/[email protected]", "preact/": "https://esm.sh/[email protected]/", "@floating-ui/react": "https://esm.sh/@floating-ui/[email protected]?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat&deps=react" } ```...