JSON

JSON 是 Rspack 的一等公民,你可以直接导入,例如:

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