Closed davecardwell closed 1 year ago
I'll do a release later, but for now you can use it (and see if it works) at:
import { build } from "https://raw.githubusercontent.com/denoland/dnt/fbf36c6ad8136a18e6337fc48cd063cb292793e3/mod.ts";
// etc...
@dsherret Thank you for the quick turnaround on this! I can confirm that it works 🙌
I’m targeting Node.js v18 (current LTS) which largely supports ES2022 according to https://node.green/
Thus, I’d like to set
compilerOptions.target
toES2022
, but that is not in theScriptTarget
union, and results in:I can presumably set the target to
Latest
and get largely the same effect for now, but in case the definition ofLatest
changes in the future I’d like to pin my target toES2022
.