mirror of
https://github.com/LukeHagar/polar.git
synced 2025-12-06 04:20:58 +00:00
32 lines
1.0 KiB
JSON
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"]
|
|
}
|