xxxxxxxxxx
bind mwheelup +jump; bind mwheeldown +jump; bind space +jump
xxxxxxxxxx
Set the baseUrl in tsconfig.json: Add the compilerOptions section (if not already present) and specify the baseUrl
---
{
"compilerOptions": {
"baseUrl": "./src"
}
}
---
before:
import { MyComponent } from "../../components/MyComponent";
after:
import { MyComponent } from "components/MyComponent";