You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the generated package.json for the "Typescript + Webpack" template uses the following lint script in the package.json:
"lint": "eslint --ext .ts ."
I think it could be a good addition to the React framework integration guide to let the user know they should update this script to include the .tsx extension as well.
New package.json lint script:
"lint": "eslint --ext .ts,.tsx ."
The text was updated successfully, but these errors were encountered:
Currently, the generated
package.json
for the "Typescript + Webpack" template uses the following lint script in thepackage.json
:I think it could be a good addition to the React framework integration guide to let the user know they should update this script to include the
.tsx
extension as well.New
package.json
lint script:The text was updated successfully, but these errors were encountered: