A map of file paths to their contents for in-memory bundling.
This allows you to bundle virtual files that don't exist on disk, or override the contents of files that do exist on disk. The keys are file paths (which should match how they're imported) and the values are the file contents.
File contents can be provided as:
string- The source code as a stringBlob- A Blob containing the source codeNodeJS.TypedArray- A typed array (e.g.,Uint8Array) containing the source codeArrayBufferLike- An ArrayBuffer containing the source code