my VSCode auto import(using control + space) is not working after I created a jsconfig.json file in my NextJS project.
This is my json:
{
"compilerOptions": {
"baseUrl": "."
},
"include": ["."]
}
I'm using next 10.2.3 and vscode 1.57.1. If I remove the jsconfig.json file, auto import works just fine..
Someone knows why?