I am trying to fix this project that has the following relevant parts of the deno.jsonc config
{
"compilerOptions": {
"lib": [
"dom",
"dom.iterable",
"dom.asynciterable",
"deno.ns"
]
}
}
This is giving me errors such as
TS2304 [ERROR]: Cannot find name 'URLPattern'.
new URLPattern(
~~~~~~~~~~
Anyone know the magic combination to get this fixed?