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?

Share Improve this question asked Nov 10, 2022 at 15:07 MalwareMoonMalwareMoon 8971 gold badge5 silver badges15 bronze badges 6
  • 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
 |  Show 1 more ment

1 Answer 1

Reset to default 12

You can replace it with import 'react-scripts' to fix this error.

本文标签: javascriptHow to replacewith importStack Overflow