File size: 409 Bytes
97ee7cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | {
"compilerOptions": {
"target": "ESNext",
"lib": ["ES2021"],
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"allowJs": true,
"incremental": true,
"tsBuildInfoFile": "../node_modules/.cache/convex-tsconfig.tsbuildinfo",
"outDir": "./_generated"
},
"include": ["./**/*.ts"],
"exclude": ["./_generated", "./__tests__"]
}
|