({ code })
| 128 | }, |
| 129 | |
| 130 | shouldTransformCachedModule({ code }) { |
| 131 | if (isActive && isBuild && resolvedConfig.build.watch && includesAlphaTabWorker(code)) { |
| 132 | return true; |
| 133 | } |
| 134 | return; |
| 135 | }, |
| 136 | |
| 137 | async transform(code, id, options) { |
| 138 | if (!isActive || options?.ssr || !includesAlphaTabWorker(code)) { |
nothing calls this directly
no test coverage detected