24 строки
687 B
JSON
24 строки
687 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Visit https://aka.ms/tsconfig.json to read more about this file */
|
|
"target": "es2018",
|
|
"module": "es2020",
|
|
"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,
|
|
}
|
|
}
|