How to get VS Code to understand JSDOC’s @typedef across multiple files
I’ve had some success with using jsconfig.json and its include property in a plain JavaScript project in Visual Studio Code 1.33.1 { “include”: [ “src/**/*.js” ] } Given the following JavaScript project: src/ ├── types/ | ├── person.js | ├── question.js | ├── answer.js ├── jsconfig.json Where both question.js and person.js are type definitions: person.js … Read more