I have a fresh Next.js project with a clean set of jsconfig declarations as per:
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"public/*": ["./public/*"],
"styles/*": ["./src/styles/*"],
"utils/*": ["./src/utils/*"],
"components/*": ["./src/components/*"]
}
}
}
Yet, out of nowhere, they're now returning Can't resolve 'styles/styles.scss'
and I can't identify what has changed. What's the best way to debug this to find the cause, or what are some common causes for this?