Hey y'all, I got a real head-thumper...
I am working with some variant of the below playground code.
In VSCode, the durable and worker fields collapse to never, but in TSPlay, they remain the branded types they are supposed to be. Any idea what the issue could be here? tsconfig.json for reference: ```json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"lib": ["esnext"],
"types": ["@cloudflare/workers-types/experimental"],
"isolatedModules": true,
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true
},
"include": [
"src",
"types"
]
}