is there a way to use swc + typescript to emit valid ES Module paths. e.g. typescript source: ```ts import foo from './foo'; ``` output: ```js import foo from './foo.js'; ```
is there a way to use swc + typescript to emit valid ES Module paths. e.g.
typescript source:
output: