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
i'm using razzle typescript. and i get error from node_modules by typescript. sample error:
ERROR in /home/hamid/my/www/with-typescript/node_modules/@types/react-redux/index.d.ts(118,29): TS2370: A rest parameter must be of an array type.
I have tried to change tsconfig.json configs to exclude node_module files but it was not successful. how can i disable it forever?
The text was updated successfully, but these errors were encountered:
This is not a Razzle issue but a TypeScript one.
Sorry, something went wrong.
according to an issue in fork-ts-checker-webpack-plugin package i solved this problem by this reply: TypeStrong/fork-ts-checker-webpack-plugin#128 (comment)
unfortunately, lots of packages have problems in their typescript and possible to you get them as errors and stops you from building razzle.
I say this for anybody has this problem add "skipLibCheck": true in compilerOptions in tsconfig.json in your project's root.
"skipLibCheck": true
@jaredpalmer I can open a pull request for default examples in the master branch.
No branches or pull requests
i'm using razzle typescript. and i get error from node_modules by typescript.
sample error:
I have tried to change tsconfig.json configs to exclude node_module files but it was not successful.
how can i disable it forever?
The text was updated successfully, but these errors were encountered: