{
  "extends": "../../tsconfig.base.json",
  "compilerOptions": {
    "lib": ["es2023"],
    "module": "commonjs",
    "target": "es2022",
    "esModuleInterop": true,
    "jsx": "react-jsx",
    "jsxImportSource": "preact",

    // Unfortunately we do have to include this "multer" type here.
    // @see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/47780
    "types": ["node", "notifications/src/jsx", "multer"],

    "paths": {
      "@/*": ["./src/*"]
    }
  },
  "include": ["tests/**/*", "scripts/**/*", "src/**/*", "playwright.config.ts"]
}
