You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran this on a project recently and hit a few types of failing or unexpected behavior. I don't know how best to iterate on this so I figured I'll submit a few steps & screenshots and we can decide split them into new tickets or whatever.
The parsing error was due to this (note import { "path/to/file" ...)
The "restricted path" errors were because a transform lost a comment that was above it
After that, I went through the changes and found a found a few patterns of errors
Duplicate/repeated member imports
Lost members
Lost `import * as`
I'm not sure what correct behavior is for 4. It wasn't hard to fix, just pointing it out. That said,
I don't understand this comment move
There might be 5-20 different examples for the lost import and duplicated members patterns. There might be some others, but let's start with these few. Let me know where and how best I can help and I'm glad to do it.
Thanks for this. Even with these issues it was still very useful.
The text was updated successfully, but these errors were encountered:
I ran this on a project recently and hit a few types of failing or unexpected behavior. I don't know how best to iterate on this so I figured I'll submit a few steps & screenshots and we can decide split them into new tickets or whatever.
After working around Support comments and other valid tsconfig.json features #1, it ran successfully
but failed a lint check with 2 types of errors
The parsing error was due to this (note
import { "path/to/file" ...
)The "restricted path" errors were because a transform lost a comment that was above it
After that, I went through the changes and found a found a few patterns of errors
Duplicate/repeated member imports
Lost members
Lost `import * as`
I'm not sure what correct behavior is for 4. It wasn't hard to fix, just pointing it out. That said,
I don't understand this comment move
There might be 5-20 different examples for the lost import and duplicated members patterns. There might be some others, but let's start with these few. Let me know where and how best I can help and I'm glad to do it.
Thanks for this. Even with these issues it was still very useful.
The text was updated successfully, but these errors were encountered: