Files
polar/example/convex/tsconfig.json
Shawn Erquhart 2eaff5e77f wip
2024-10-31 17:35:23 -04:00

32 lines
1.0 KiB
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 required to use Convex.
*/
"compilerOptions": {
/* These settings are not required by Convex and can be modified. */
"allowJs": true,
"strict": true,
"skipLibCheck": true,
/* These compiler options are required by Convex */
"target": "ESNext",
"lib": ["ES2021", "dom", "ESNext.Array", "DOM.Iterable"],
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* This should only be used in this example. Real apps should not attempt
* to compile TypeScript because differences between tsconfig.json files can
* cause the code to be compiled differently.
*/
"customConditions": ["@convex-dev/component-source"]
},
"include": ["./**/*"],
"exclude": ["./_generated"]
}