Describe the bug
In tsconfig.json:
"paths": {
"#^*": ["../*"],
"#@*": ["./resources/*"],
"#*": ["./*"]
}
In v3.7.3, this works properly.
import * as $standalone from '#@standalone/index.ts';
It properly becomes:
import * as $standalone from './resources/standalone/index.ts';
In v3.8.0 ... tested up to v4.5.1, it is no longer transformed. Instead, I end up with the following, despite the same alias working in other imports that don't use import * as syntax.
import * as $standalone from '#@standalone/index.ts';
Reverting to v3.7.3 fixes the issue.
Reproduction
n/a
Steps to reproduce
No response
System Info
Validations
Describe the bug
In tsconfig.json:
In v3.7.3, this works properly.
It properly becomes:
In v3.8.0 ... tested up to v4.5.1, it is no longer transformed. Instead, I end up with the following, despite the same alias working in other imports that don't use
import * assyntax.Reverting to v3.7.3 fixes the issue.
Reproduction
n/a
Steps to reproduce
No response
System Info
Validations