Wonderful! Thank you! It works
Side note: At first it didn’t work… Systemjs still made a request to the server to fetch the base class of the view model (using type script). Turned out that I had
import { Layout } from '../Layout';
instead of
import { Layout } from '../layout';
when importing the base class in the view model…