Reputation: 31335
This is my jsconfig.json
file:
{
"compilerOptions": {
"baseUrl": ".",
"target": "es6",
"module": "commonjs",
"paths": {
"@analytics/*": ["./src/analytics/*"],
"@assets/*": ["./src/assets/*"],
"@components/*": ["./src/components/*"],
"@constants/*": ["./src/constants/*"],
"@cookies/*": ["./src/cookies/*"],
"@helpers/*": ["./src/helpers/*"],
"@helmet/*": ["./src/helmet/*"],
"@hooks/*": ["./src/hooks/*"],
"@layout/*": ["./src/layout/*"],
"@pages/*": ["./src/pages/*"],
"@redux/*": ["./src/redux/*"],
"@routes/*": ["./src/routes/*"],
"@styles/*": ["./src/styles/*"],
"@src/*": ["./src/*"]
}
},
"include": [
"src/**/*", "scripts"
]
}
This file is triggering this 3 instances of the same error.
"node_modules/html-entities/lib/index" not found
What is happening? How can I get rid of it?
Upvotes: 2
Views: 2086