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": ".",
|
|
|
|
"strict": true,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2024-01-11 14:42:34 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"maxNodeModuleJsDepth": 0
|
|
|
|
},
|
|
|
|
"exclude": ["node_modules"]
|
2024-01-09 23:20:17 +01:00
|
|
|
}
|