denodeno instead of pnpmpnpm for a web react/vite/tsreact/vite/ts project I have. I cloned tutorial-with-reacttutorial-with-react to test. I am using 2.1.12.1.1. I wanted to add a package from the jsrjsr (@std/collections@std/collections) and use that in the tsxtsx pages. Naively, I just did a deno add jsr:@std/collectionsdeno add jsr:@std/collections and then tried to reference it with import { pick } from "@std/collections";import { pick } from "@std/collections";. Somehow this isn't showing an error in vscodevscode but if I run with deno task devdeno task dev then I get the following error:jsrjsr in front doesn't help either import { pick } from "jsr:@std/collections";import { pick } from "jsr:@std/collections";, and nor does import { pick } from "https://deno.land/std@0.224.0/collections/mod.ts";import { pick } from "https://deno.land/std@0.224.0/collections/mod.ts";, which doesn't get interpreted by vitevite, and returns a TSTS file, which I guess isn't working either. Any pointers on how to do this? Do I need to force it to use the package.jsonpackage.json ? If so, does that mean I need to manually edit that ?Join the Discord to ask follow-up questions and connect with the community