We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When upgrading from Material Ui next 1.0.0-beta.31 to 1.0.0-beta.46 I got the following error:
1.0.0-beta.31
1.0.0-beta.46
error TS2307: Cannot find module 'csstype'.
I should be able to compile the project with Typescript without errors.
It doesn't compile.
Typescript react starter app that uses Material-UI beta.46.
I was able to fix this by adding a dev dependency on "csstype": "^2.4.2", so it seems like your project is missing that dependency?
"csstype": "^2.4.2",
Project based on: https://github.com/Microsoft/TypeScript-React-Starter
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When upgrading from Material Ui next
1.0.0-beta.31
to1.0.0-beta.46
I got the following error:error TS2307: Cannot find module 'csstype'.
Expected Behavior
I should be able to compile the project with Typescript without errors.
Current Behavior
It doesn't compile.
Steps to Reproduce (for bugs)
Typescript react starter app that uses Material-UI beta.46.
Context
I was able to fix this by adding a dev dependency on
"csstype": "^2.4.2",
so it seems like your project is missing that dependency?Your Environment
Project based on: https://github.com/Microsoft/TypeScript-React-Starter
The text was updated successfully, but these errors were encountered: