I just spotted "~/" in some of js imports
import { Foo, Bar, Baz } from "~/types/schema"
This is mildly confusing because "~" usually meant the $HOME
directory. And for the life of me - I can't google the answer.
The only answer I found was this What is the ~ (tilde) doing in this javascript import?
dealing with import {IDispatch} from '~react-redux~redux';
which uses the tilde sign, but not as int the path ~something
instead of ~/something
)