AS won't let me import from an external module. This does not work: `import { Foo } from "bar"` But this relative import does work: `import { Foo } from "./node_modules/bar"`
AS won't let me import from an external module. This does not work:
import { Foo } from "bar"But this relative import does work:
import { Foo } from "./node_modules/bar"