Results 124 issues of Sancarn

I know that all errors in TypeScript are optional, it'd be nice if we could declare which error ids we want to ignore. I.E. In the `tsconfig.json`: ```json { "compilerOptions":{...

Suggestion
Awaiting More Feedback

Something mentioned here: https://github.com/sancarn/stdVBA/discussions/143#discussioncomment-14590162 Need to figure out why this occurs, and resolve it.

A common technique is: ```vb if someCondition then Err.Raise 1, "", "..." ``` This is because Err.Raise will automatically jump up the stack to the handler. However when we change...

Called on every `value` during serialise/parsing ```ts stdJSON.CreateFromVariant([ Range, Range ], myPreProcessor) function myPreProcessor(v: Variant): Variant{ if (typeof v is Range) { return { type: "Range", address: v.address } }...