mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
- Convert spaces to tabs in tsconfig files - Format CLI commands and prompts - Update generated Convex files - Format betterauth adapter and schema Co-authored-by: Ona <no-reply@ona.com>
26 lines
724 B
JSON
26 lines
724 B
JSON
{
|
|
/* This TypeScript project config describes the environment that
|
|
* Convex functions run in and is used to typecheck them.
|
|
* You can modify it, but some settings are required to use Convex.
|
|
*/
|
|
"compilerOptions": {
|
|
/* These settings are not required by Convex and can be modified. */
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "react-jsx",
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
/* These compiler options are required by Convex */
|
|
"target": "ESNext",
|
|
"lib": ["ES2021", "dom"],
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"isolatedModules": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["./**/*"],
|
|
"exclude": ["./_generated"]
|
|
}
|