fix: add ts-ignore for delete operations on required properties

zipFile and unzippedPath are set at runtime by cluster worker host.
This commit is contained in:
Koushik Dutta
2026-04-02 12:45:22 -07:00
parent 675b967862
commit 24ecc19e99

View File

@@ -16,7 +16,9 @@ export function createClusterForkWorker(
// these are specific to the cluster worker host
// and will be set there.
// @ts-ignore these are optional at runtime
delete runtimeWorkerOptions.zipFile;
// @ts-ignore these are optional at runtime
delete runtimeWorkerOptions.unzippedPath;
const waitKilled = new Deferred<void>();