2020-07-14 15:57:29 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2022-05-31 14:34:16 +00:00
|
|
|
"alwaysStrict": true,
|
2020-07-14 15:57:29 +00:00
|
|
|
"checkJs": true,
|
2022-10-05 12:17:03 +00:00
|
|
|
"composite": true,
|
2020-07-14 15:57:29 +00:00
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
2022-05-31 14:34:16 +00:00
|
|
|
"esModuleInterop": true,
|
2022-10-05 12:17:03 +00:00
|
|
|
"incremental": true,
|
|
|
|
"module": "ESNext",
|
2022-05-31 14:34:16 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
2020-11-26 13:51:17 +00:00
|
|
|
"resolveJsonModule": true,
|
2022-05-31 14:34:16 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": true,
|
2023-05-26 07:37:05 +00:00
|
|
|
"target": "ES2021",
|
2023-05-22 12:52:31 +00:00
|
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
"skipLibCheck": true
|
2020-07-14 15:57:29 +00:00
|
|
|
}
|
|
|
|
}
|