2024-01-09 23:20:17 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["ESNext"],
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"checkJs": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"rootDir": ".",
|
|
|
|
"baseUrl": ".",
|
2024-01-12 01:02:59 +01:00
|
|
|
"skipLibCheck": true,
|
2024-01-09 23:20:17 +01:00
|
|
|
"strict": true,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2024-01-29 21:24:22 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
},
|
2024-01-09 23:20:17 +01:00
|
|
|
}
|