Files

20 lines
609 B
JSON
Raw Permalink Normal View History

2023-11-13 16:30:27 +01:00
{
"compilerOptions": {
"module": "Node16",
"target": "ES2024",
2023-11-13 16:30:27 +01:00
"lib": [
"ES2024"
2023-11-13 16:30:27 +01:00
],
"sourceMap": true,
"rootDir": "src",
"strict": true, /* enable all strict type-checking options */
"outDir": "out",
"jsx": "react",
"jsxFactory": "vscpp",
"jsxFragmentFactory": "vscppf"
2023-11-13 16:30:27 +01:00
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
}
}