having issue using this plugin in my esbuild.config.json. I just copy pasted your example, throws error immediately. ```js > node_modules/statuses/index.js:13:20: error: [plugin: babel] /[appdir]/node_modules/statuses/codes.json: Missing semicolon. (2:7) 1 | { > 2 | "100": "Continue", | ^ 3 | "101": "Switching Protocols", 4 | "102": "Processing", 5 | "103": "Early Hints", 13 │ var codes = require('./codes.json'); ╵ ~~~~~~~~~~~ node_modules/esbuild/lib/main.js:756:22: note: This error came from the "onLoad" callback registered here 756 │ let promise = setup({ ╵ ^ at setup (file:///[appdir]/node_modules/esbuild-plugin-babel/src/index.js:36:9) ``` [you can see the error in action by uncommenting this lline](https://github.com/noahehall/nodeproto/blob/b310a48b65b90c73dc32481ff4979172426b6643/lib/esbuild.config.mjs#L70) and running `npm start`
having issue using this plugin in my esbuild.config.json.
I just copy pasted your example, throws error immediately.
you can see the error in action by uncommenting this lline
and running
npm start