this is my jsconfig.json:
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"]
}
}
}
and when I want to import using import ShiftMaterial from "@components/three/material/ShiftMaterial"; I get this error:
Failed to resolve import "@components/three/material/ShiftMaterial" from "src/components/three/houses/first/Object1.jsx". Does the file exist?
although the path is correct
Am i missing something?