am i missing something wasn't this
(ns main
(:require ["" :as me]))
leading to this
import * as me from "";
yes but with the default shouldn't it be
import * as me from ""no, importing default in JS is import foo from
default is a special object that you can import
exported with export default
if you want the above what you wrote, just leave out $default
aaaaaaah
lol ok i was wrong again 😄
somehow i just get the std import