convex
Version:
Client for the Convex Cloud
21 lines (20 loc) • 545 B
text/typescript
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": ["./**/*"],
}`;
}