Absolute Imports
Add the following to jsconfig.json (or tsconfig.json)
{
"compilerOptions": {
"baseUrl": "src"
},
"include": ["src"]
}
VSCode reads jsconfig.json files so IntelliSense will automatically work.
Add the following to jsconfig.json (or tsconfig.json)
{
"compilerOptions": {
"baseUrl": "src"
},
"include": ["src"]
}
VSCode reads jsconfig.json files so IntelliSense will automatically work.