export function actionsTsconfigCodegen() {
  return `{
  /* This TypeScript project config describes the environment that
   * effectful Convex functions run in and is used to typecheck them.
   */
  "compilerOptions": {
    "allowJs": true,
    "strict": true,
    "target": "ESNext",
    "lib": ["ES2021", "dom"],
    "forceConsistentCasingInFileNames": true,
    "allowSyntheticDefaultImports": true,
    "module": "ESNext",
    "moduleResolution": "Node",
    "isolatedModules": true,
    "noEmit": true,
  },
  "include": ["./**/*"],
}`;
}
