2018-06-15 16:47:11 +02:00
|
|
|
{
|
2018-10-08 15:37:24 -07:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
2025-08-07 07:57:14 -07:00
|
|
|
"target": "ES2024",
|
|
|
|
|
"lib": [
|
|
|
|
|
"ES2024"
|
|
|
|
|
],
|
2018-10-08 15:37:24 -07:00
|
|
|
"outDir": "out",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
/* Strict Type-Checking Option */
|
|
|
|
|
"strict": true /* enable all strict type-checking options */,
|
|
|
|
|
/* Additional Checks */
|
|
|
|
|
"noUnusedLocals": true /* Report errors on unused locals. */
|
|
|
|
|
// "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
|
|
|
"exclude": [
|
|
|
|
|
"node_modules"
|
|
|
|
|
]
|
|
|
|
|
}
|