We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
No warnings, source-maps can be loaded.
Failed to parse source map from '[...]%7Bindex%7D.js.map' file: Error: ENOENT: no such file or directory, open '[...]%7Bindex%7D.js.map'
Typescript fixed in issue regarding percentage encoded Source-Maps: see: microsoft/TypeScript#41752 microsoft/TypeScript#40951
The source-map-loader seems to not be able to load percentage-encoded file-urls:
{index}.ts:
console.log("just testing... doesn't matter what we use here");
{index}.js (compiled with typescript 4.0.5, source-maps can be loaded)
console.log("just testing... doesn't matter what we use here"); //# sourceMappingURL={index}.js.map
{index}.js (compiled with typescript 4.1.2,source-maps cannot be loaded)
console.log("just testing... doesn't matter what we use here"); //# sourceMappingURL=%7Bindex%7D.js.map
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Expected Behavior
No warnings, source-maps can be loaded.
Actual Behavior
Failed to parse source map from '[...]%7Bindex%7D.js.map' file: Error: ENOENT: no such file or directory, open '[...]%7Bindex%7D.js.map'
Code
Typescript fixed in issue regarding percentage encoded Source-Maps:
see:
microsoft/TypeScript#41752
microsoft/TypeScript#40951
The source-map-loader seems to not be able to load percentage-encoded file-urls:
{index}.ts:
{index}.js (compiled with typescript 4.0.5, source-maps can be loaded)
{index}.js (compiled with typescript 4.1.2,source-maps cannot be loaded)
The text was updated successfully, but these errors were encountered: