Cody Schaaf

Results 20 comments of Cody Schaaf

I currently use grunt-ts and can pass in the files I want, this is useful since I have multiple apps and partners in the same project. With grunt I can...

Anyone able to come up with a workaround in the meantime?

I would consider how MUI https://github.com/mui/material-ui accomplishes this. All of their components are 100% customizable. This is usually accomplished by top level theming, passing in override components, or targeting exposed...

I tried all the suggestions, and while disabling threading worked it broke ci. The thing that finally worked for me was blowing away my node_modules deleting the package-lock and clearing...

Oddly enough with the above solution the test: ```ts it("handles ternary expressions containing a function call", async () => { const text = `export function Complaints({ currentUserCanEdit, updateComplaint }) {...

Seems related to https://github.com/airbnb/ts-migrate/issues/144

I tried updating the plugin but couldn't figure it out, so ended up just disabling this plugin 😢

It appeared that the -h documentation was not correct, so I found this thread about how to use it. https://github.com/airbnb/ts-migrate/issues/166 personally I ended up running into issues and just made...

No problem! Glad I was able to help some. This is the list of plugins I ended up going with: ``` const anyAlias = "$TSFixMe"; const anyFunctionAlias = "$TsFixMeFunction"; const...

All these work arounds seem to just be doing newers job twice (like checking the mtime). Are the changed files not available to just pass into the override method?