From b12fb235bd7953ab185d51a1eed3b532bb8c1a08 Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Tue, 27 Oct 2020 17:19:21 -0700 Subject: [PATCH] build(types): enable `allowSyntheticDefaultImports` because of `lru-cache` package somewhere down the dependency tree --- tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 7184fa16..058a7f71 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,7 @@ { "extends": "@octokit/tsconfig", - "include": ["src/**/*"] + "include": ["src/**/*"], + "compilerOptions": { + "allowSyntheticDefaultImports": true + } }