(options)
| 2 | import macros from 'unplugin-parcel-macros'; |
| 3 | |
| 4 | export function createBuildSettings(options) { |
| 5 | return { |
| 6 | entryPoints: ['./index.jsx'], |
| 7 | bundle: true, |
| 8 | plugins: [ |
| 9 | macros.esbuild(), |
| 10 | esbuildPluginTsc({ |
| 11 | force: true |
| 12 | }) |
| 13 | ], |
| 14 | ...options |
| 15 | }; |
| 16 | } |