We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Typia generate incorrectly changes relative import path
Relative import path is converted to "interface" when it should be "./interface".
"interface"
"./interface"
import typia from "typia"; import { SomeInterface } from "../interface";
and
pnpm typia generate --input home/src/typia --output home/src
becomes
import typia from "typia"; import { SomeInterface } from "interface";
The text was updated successfully, but these errors were encountered:
e642ae4
Merge pull request #577 from samchon/features/literals
a4054b1
Fix #573 - exact import path generation
It was a bug only occured in Macbook.
Tried to fix it, but no way.
Therefore, I will change setup way like below:
npm install --save typia # must install first npx typia setup ~ npx typia generate ~
Sorry, something went wrong.
38d1fdf
Merge pull request #582 from samchon/features/bin
3e09c3a
Fix #573 - unable to run setup on Macbook + `pnpm`
Upgrade to v3.7.4, then would be fixed.
v3.7.4
Merge pull request #303 from samchon/features/setup
ee6082b
Fix samchon/typia#573 - same problem can be happened
samchon
No branches or pull requests
Bug Report
Typia generate incorrectly changes relative import path
Summary
Relative import path is converted to
"interface"
when it should be"./interface"
.Code occuring the bug
and
becomes
The text was updated successfully, but these errors were encountered: