2022-01-06 23:48:14 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
/* Visit https://aka.ms/tsconfig.json to read more about this file */
|
|
|
|
"target": "es2018",
|
2022-01-11 20:56:41 +03:00
|
|
|
"module": "es2020",
|
2022-01-06 23:48:14 +03:00
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
}
|
|
|
|
}
|