Currently our code is sprinkled with
import * as PIXI from 'pixi.js';
we should REALLY convert these to explicit imports a la:
import {Container, Rectangle} from 'pixi';
The latter will allow esbuild to tree-shake more effectively and get rid of things we don't use.