For those using JavaScript, you need to create a jsconfig.json file in the root of your project and paste the following code:
{
"compilerOptions": { // ... "baseUrl": ".", "paths": { "@/": [ "./src/" ] } // ... } }