admin管理员组文章数量:1344970
If you use create-react-app a file named react-app-env.d.ts is created, that contains /// <reference types="react-scripts" />
. I was pletely redoing Eslint config that es with create-react-app and while doing so, I have got an error saying:
Do not use a triple slash reference for react-scripts, use import style instead @typescript-eslint/triple-slash-reference
My question is, how do I replace /// <reference types="react-scripts" />
with import
?
If you use create-react-app a file named react-app-env.d.ts is created, that contains /// <reference types="react-scripts" />
. I was pletely redoing Eslint config that es with create-react-app and while doing so, I have got an error saying:
Do not use a triple slash reference for react-scripts, use import style instead @typescript-eslint/triple-slash-reference
My question is, how do I replace /// <reference types="react-scripts" />
with import
?
- I would just omit that file when running eslint stackoverflow./questions/60628874/… – Konrad Commented Nov 10, 2022 at 15:17
-
So just to clarify the import part of it, if someone were to import it, in this instance the import would be
import 'react-scripts/lib/react-app.d.ts'
right? – MalwareMoon Commented Nov 10, 2022 at 15:45 - Easiest way to ignore the file, is simply to create a .eslintignore file in the same folder as .eslintrc.json and put "react-app-env.d.ts" – alex-jesper Commented Jan 3, 2023 at 7:25
- Have you found a way to do this? – Kr1 Commented Jan 19, 2023 at 9:10
-
@Kr1 I did not have time to touch the project involved in this problem since, but it's essentially file for importing types regarding create-react-app from node-modules so importing it using
import 'react-scripts/lib/react-app.d.ts'
should, I don't know if it does, do the same thing. I remember also finding few questions suggesting what Konrad said, but cannot find them again, so I don't know about removing the file. – MalwareMoon Commented Jan 19, 2023 at 9:24
1 Answer
Reset to default 12You can replace it with import 'react-scripts'
to fix this error.
本文标签: javascriptHow to replacewith importStack Overflow
版权声明:本文标题:javascript - How to replacewith import? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743752123a2532842.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论