SynaxError: Unexpected Token export

I am trying to run my code that imports some types from "@cloudflare/workers-types" but it gives me this error
/home/----/----/node_modules/.pnpm/@cloudflare+workers-types@4.20240314.0/node_modules/@cloudflare/workers-types/index.ts:17

export declare class DOMException extends Error {
^^^^^^

SyntaxError: Unexpected token 'export'

Its a monorepo and am using simple ts-node to run my index file. This file imports a local package that in turn imports from "cloudflare/workers-types".
Was this page helpful?