ts-expect-error instead of ts-ignore

This commit is contained in:
Ben Grant
2025-05-20 16:56:47 -07:00
committed by Ciro Spaciari
parent b817038551
commit c629aecf99

View File

@@ -27,7 +27,7 @@ function setEnvironmentDataInScope(key: string, data: wt.Serializable): Disposab
return {
[Symbol.dispose]() {
// delete the key. ignored because @types/node does not think you can pass undefined to setEnvironmentData
// @ts-ignore
// @ts-expect-error
setEnvironmentData(key);
},
};