Ahn

Results 296 comments of Ahn

I can summarize these below options: - If only type checking without using ts-jest, you don’t need to have the config isolatedModules: true above. - If delegates to ts-jest to...

Ye you can contact me on discord @Ahn#1702 or ts-jest Slack (link in ts-jest README). I am curious about working a different file extension like .vue so trying out with...

you can use memory cache for that, see https://stackoverflow.com/questions/53733138/how-do-i-type-check-a-snippet-of-typescript-code-in-memory . I just tried out the codes provided there and it works. The example output like this ``` ==== Output code...

Indeed I see with `target: es6` the test doesn't work anymore. The stack trace points to `@babel/parser` so this one you might need to ask Babel team. **Side information:** I...

there is another way to tackle the problem happening to `es6` is using babel plugin to alter AST (if using `babel`) or TypeScript AST transformer (if using `ts-jest`). Still this...

> I think it's either this or creating a language service as `ts-jest` does. I have limited time to work on this, but I would really like to have this...

the `maxWidth` was fixed in #1106, however `minWidth` is not available as a feature. I checked on https://design.infor.com/code/ids-enterprise/latest/splitter but there is no setting option for `minWidth`. I think we should...

I find it quite convenient to have 1-1 mapping from design.infor.com to ng wrapper. That makes it easier to use :) I myself often doing that way, first going to...

IIRC the problem was processing different style extension files `.sass`, `.css`, `.scss` with importing other style files and Jest cannot process them. For example ``` @use 'foo'; @include foo.bar(); ```...