You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you had any issues using this with TS? I'm getting
> import-glob:./**/*:2:305: error: Could not resolve "startAPI.ts" (mark it as external to exclude it from the bundle)
2 │ ...s.ts';import * as module6 from 'startAPI.ts'
╵ ~~~~~~~~~~~~~
When trying to use for the first time. I can provide a better reproduction if you'd like, on ESBuild 0.11.12
The text was updated successfully, but these errors were encountered:
.map((module,index)=>`import * as module${index} from '${module}'`)
Needed to be import * as module${index} from './${module}' otherwise, it would tell me that it can't find import whatever from 'file.ts' rather than './file.ts'
Have you had any issues using this with TS? I'm getting
When trying to use for the first time. I can provide a better reproduction if you'd like, on ESBuild 0.11.12
The text was updated successfully, but these errors were encountered: