Ever since switching from CJS to ESM, we've needed a custom node loader to process .scss, .svg and png file imports. For playwright, we had to create a [patch file](https://github.com/payloadcms/payload/blob/2.0-esm/patches/%40playwright__test%401.37.1.patch) which patches playwright to point to our [custom loader](https://github.com/payloadcms/payload/blob/2.0-esm/packages/payload/src/esm-loader-playwright.mjs). Without this loader, we'd get the following error:  Instead of us having to patch playwright, could you either - add a config option which allows us to add custom node loaders [here](https://github.com/microsoft/playwright/blob/c92ad10f60f5f4f4cecbd671a03e9288ec2290c7/packages/playwright-test/src/util.ts#L306), or - natively support scss/svg/png imports in [playwright's own loader](https://github.com/microsoft/playwright/blob/c92ad10f60f5f4f4cecbd671a03e9288ec2290c7/packages/playwright-test/src/transform/esmLoader.ts)?