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
tsconfig:
{ "extends": ["@tsconfig/vite-react/tsconfig.json", "@tsconfig/strictest/tsconfig.json"], "compilerOptions": { "paths": { "@guoyunhe/react-fetch": ["./src"] }, "types": [ "node", "jest", "@guoyunhe/react-lib-scripts/assets", "@guoyunhe/react-lib-scripts/global" ] } }
TypeScript 5 have the following error:
error TS5052: Option 'checkJs' cannot be specified without specifying option 'allowJs'.
It is because that @tsconfig/vite-react has "allowJs": false, which is not necessary.
@tsconfig/vite-react
"allowJs": false,
The text was updated successfully, but these errors were encountered:
allowJs
Successfully merging a pull request may close this issue.
tsconfig:
TypeScript 5 have the following error:
It is because that
@tsconfig/vite-react
has"allowJs": false,
which is not necessary.The text was updated successfully, but these errors were encountered: