auto import vscode not working

Solutions on MaxInterview for auto import vscode not working by the best coders in the world

showing results for - "auto import vscode not working"
Hugo
22 Jul 2019
1//create a file with name jsconfig.json in your project
2{
3    "compilerOptions": {
4      "module": "commonjs",
5      "target": "es6"
6    },
7    "exclude": ["node_modules"]
8}