typesafeconfig
Version:
TypeScript base configuration (tsconfig) to extend from with emphasis on type safety.
23 lines (21 loc) • 607 B
JSON
{
"compilerOptions": {
/* Strict Type-Checking Options */
// "alwaysStrict": true,
// "noImplicitAny": true,
// "noImplicitThis": true,
"strict": true,
// "strictBindCallApply": true,
// "strictFunctionTypes": true,
// "strictNullChecks": true,
// "strictPropertyInitialization": true,
/* Additional Checks */
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true
}
}