Open
Description
π Search Terms
rewriteRelativeImportExtensions, import expression
π Version & Regression Information
- This changed between versions 5.7
β― Playground Link
π» Code
Test One
import('./foo.ts')
Test Two
import './foo.ts';
import('./foo.ts')
π Actual behavior
JS Output
Test One
import('./foo.ts') // β
Test Two
import './foo.js'; // β
import('./foo.js') // β
π Expected behavior
JS Output
Test One
import('./foo.js') // β
Test Two
import './foo.js'; // β
import('./foo.js') // β
Additional information about the issue
No response