diff --git a/packages/config-typescript/tsconfig.json b/packages/config-typescript/tsconfig.json index 207f718..e3f8321 100644 --- a/packages/config-typescript/tsconfig.json +++ b/packages/config-typescript/tsconfig.json @@ -1,16 +1,21 @@ { "compilerOptions": { "strict": true, + "strictBindCallApply": true, + "strictFunctionTypes": true, "allowUnusedLabels": false, "allowUnreachableCode": false, "noFallthroughCasesInSwitch": true, "noImplicitOverride": true, "noImplicitReturns": true, + "noImplicitThis": true, + "noImplicitAny": true, "noPropertyAccessFromIndexSignature": true, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, + "verbatimModuleSyntax": true, "isolatedModules": true, "esModuleInterop": true, "skipLibCheck": true,