Utilizing Webpack's DllPlugin and DllReferencePlugin, I create a distinct "vendor" bundle that houses all of my main dependencies which remain relatively static.
The project directory is structured as follows:
project
App
(code and components)
tsconfig.json
package.json
node_modules
vendor
package.json
node_modules
In transitioning from Flow to TypeScript, I previously had this configured in my .flowconfig:
[options]
module.system.node.resolve_dirname=node_modules
module.system.node.resolve_dirname=vendor/node_modules
Currently, Visual Studio Code is displaying numerous errors because TypeScript is unaware of vendor/node_modules.
How can I set up the same configuration in tsconfig.json so that TypeScript can recognize all of these libraries?