{
  "extends": "./tsconfig.node.json",
  "compilerOptions": {
    "lib": ["es2022", "dom", "dom.iterable"] // Tells TypeScript what built-in types to include. es2022 is the best option for stability. dom and dom.iterable give you types for window, document etc.
  }
}
