{
  "compilerOptions": {
    "baseUrl": ".",
    "module": "esnext",
    "target": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "strict": true,
    "declaration": true,
    "noUnusedLocals": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "useUnknownInCatchVariables": false,
    "lib": ["esnext", "DOM"],
    "types": ["node", "vite/client", "vitest"],
    "paths": {
      "src/*": ["src/*"],
      "@components/*": ["src/client/app/components/*"],
      "@client/*": ["src/client/*"],
      "@node/*": ["src/node/*"],
      "@mdx/*": ["../mdx/src/*"],
      "lib/*": ["src/node/*"],
      "shared/*": ["src/shared/*"],
      "tests/*": ["__tests__/*"],
      "/@shared/*": ["src/client/shared/*"],
      "iles": ["types/index.d.ts"]
    }
  },
  "include": ["src", "tests", "types"],
  "exclude": ["dist"]
}
