If you’re using React and typescript, try these few actions:
rm -rf node_modules; yarn install
build
directory: remove the build
directory and restart the node serviceThis failed:
// don't do this - a 'bare' array as type
const customers: [] = []
SOLUTION: It was fixed by:
// add a type to the array
const customers: string[] = []