Hi,
I'm currently using a beta feature from TypeScript 4.1 beta, which has a new flag in tsconfig.json called noUncheckedIndexedAccess.
ts-node doesn't understand this yet, which is evident when I try to run testyts:
Error: "⨯ Unable to compile TypeScript:
error TS5023: Unknown compiler option 'noUncheckedIndexedAccess'."
Is it possible to use an external tsc --watch process and just point testyts at the compiled .js files?
Hi,
I'm currently using a beta feature from TypeScript 4.1 beta, which has a new flag in tsconfig.json called
noUncheckedIndexedAccess.ts-node doesn't understand this yet, which is evident when I try to run
testyts:Is it possible to use an external
tsc --watchprocess and just point testyts at the compiled .js files?