2024-10-08 10:23:45 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "Node16",
|
2025-08-07 07:57:14 -07:00
|
|
|
"target": "ES2024",
|
2024-10-08 10:23:45 -05:00
|
|
|
"outDir": "out",
|
|
|
|
|
"lib": [
|
2025-08-07 07:57:14 -07:00
|
|
|
"ES2024"
|
2024-10-08 10:23:45 -05:00
|
|
|
],
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"rootDir": "src",
|
2025-08-07 07:57:14 -07:00
|
|
|
"strict": true /* enable all strict type-checking options */
|
2024-10-08 10:23:45 -05: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. */
|
|
|
|
|
}
|
2025-08-07 07:57:14 -07:00
|
|
|
}
|