()
| 124 | |
| 125 | /** @returns {Partial<esbuild.BuildOptions>} */ |
| 126 | export const defaultESBuildOptions = () => { |
| 127 | return { |
| 128 | bundle: true, |
| 129 | color: true, |
| 130 | legalComments: `inline`, |
| 131 | logLimit: 0, |
| 132 | target: `es2020`, |
| 133 | }; |
| 134 | }; |
| 135 | |
| 136 | const inlineWorkerPath = "Build/InlineWorkers.js"; |
| 137 |
no outgoing calls
no test coverage detected
searching dependent graphs…