{
  /* This TypeScript project config describes the environment that
   *  Convex functions run in and is used for typechecking.
   *  You can modify it, but some settings required to use Convex
   *  cannot be changed.
   */
  "compilerOptions": {
    /* Defaults from Convex */
    "target": "ESNext",
    "lib": ["ES2021", "dom"],
    "skipLibCheck": true,
    "allowSyntheticDefaultImports": true,
    "strict": false,
    "noEmit": true,
    "noErrorTruncation": true,

    /* Required for bundler-style imports */
    "moduleResolution": "Bundler",
    "module": "ESNext",
    "isolatedModules": true
  },
  "include": ["./**/*"],
  "exclude": ["node_modules"]
}
