From 479885afb4813f327494c6e706b3dfe65f2311b7 Mon Sep 17 00:00:00 2001 From: Marvin Heilemann <11534760+muuvmuuv@users.noreply.github.com> Date: Fri, 7 Jul 2023 09:37:19 +0200 Subject: [PATCH] fix: got bug --- README.md | 2 ++ tsconfig.json | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b7aef19..d79b46e 100644 --- a/README.md +++ b/README.md @@ -235,6 +235,8 @@ smallest possible size to increase the load time in VS Code _for you_. 3. Commit your changes with a detailed explanation 4. Create a pull request +> Package size: 279.8kb + ### Deployment We use `release-it` to create a new release. This will automatically create a tag, release diff --git a/tsconfig.json b/tsconfig.json index 8955306..c9f9520 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,7 +10,11 @@ "strict": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, - "noUnusedParameters": true + "noUnusedParameters": true, + "paths": { + // BUG: https://github.com/sindresorhus/got/issues/2267 + "got": ["./node_modules/got/dist/source"] + } }, "exclude": ["node_modules", "tmp", "dist"] }