Interesting, try to extend class that the code is live in different file in Next.JS cause ReferenceError 🤔

// in parent.ts
export class Parent {}

and in child

// in child.ts
import { Parent } from './parent.ts'

export class Child extends Parent {}