From dccf03ffc2bbd9a7881c4c890cd317c922b09f6f Mon Sep 17 00:00:00 2001 From: tamaina Date: Thu, 30 Mar 2023 12:51:24 +0000 Subject: [PATCH] Fix misskey-js/tsconfig.json Fix #10441 --- packages/misskey-js/tsconfig.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/misskey-js/tsconfig.json b/packages/misskey-js/tsconfig.json index 2bd0acf342..d484a6b907 100644 --- a/packages/misskey-js/tsconfig.json +++ b/packages/misskey-js/tsconfig.json @@ -14,7 +14,13 @@ "strictNullChecks": true, "experimentalDecorators": true, "noImplicitReturns": true, - "esModuleInterop": true + "esModuleInterop": true, + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "esnext" + ] }, "include": [ "src/**/*"