Dave Jeffery

Results 100 comments of Dave Jeffery

> I've not submit anything to DT before so any feedback on that directory is helpful @SamHH Either have I! This is literally my first week using TypeScript (starting a...

@SamHH Ah ok. I was basing my answer on [what I read on StackOverflow](https://stackoverflow.com/questions/42931051/is-definitelytyped-appropriate-for-new-typescript-definitions) but TypeScript documentation is a much more canonical source.

@SamHH: I'm seeing an error when using the second param (readable state) of the `mutate` function. For example, in the code below: ```ts // store.ts export interface IApp { name:...

@aweary: That's true. I guess the issue that I was pointing out still stands though. There are cases where you may wish to assign something from `state` to `draft` and...

@SamHH: Using it now, I've made a note to report back after a few days of use.

@SamHH: So far, so good. Anything in particular that I should be looking out for?

@SamHH: Well I had trouble doing the following (based on your example): ```ts const selectApp = createSelector(state => state.apps[state.selectedApp]); const BuildContainer: React.SFC = () => ( {(app) => } );...

I'm not getting a build error, just "Failed to compile" from typescript and tslint is passing. I'm using `@babel/preset-typescript` and `react-app-rewire-typescript-babel-preset` so potentially it is a bug in one of...

Yes, it does that on all errors. Usually TSLint will catch the error so it hasn't really been an issue for me so far. Created an issue on the repo...

Ok I downgraded to `[email protected]` and now I am getting the following error: ``` ./src/steps/6-Build.tsx Syntax error: {snip}/src/steps/6-Build.tsx: Unexpected token (153:11) 151 | const selectApp = createSelector(state => state.apps[state.selectedApp]); 152...