Thanks to using `import`s instead of `require`s we're able to apply import transform to inline requires for faster startups :) Basically like this: ```diff -const path = require('path'); +import path from 'path'; ```