importassertfrom'node:assert'// Require
constrequired=require('./file.json')// Dynamic Import
constdynamicRes=awaitimport('./file.json')// Verify both imports work and have the expected structure
assert.strictEqual(required.foo, 'bar')assert.strictEqual(dynamicRes.default.foo, 'bar')