22 lines
585 B
JSON
22 lines
585 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "Node16",
|
|
"target": "ES2022",
|
|
"outDir": "out",
|
|
|
|
"lib": [
|
|
"ES2022"
|
|
],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
/* 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. */
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "out"]
|
|
}
|