JSON

JSON is a first-class citizen with Rspack. You can import it directly, for example:

example.json
{
  "foo": "bar"
}
index.js
import json from './example.json';
json.foo; // bar