From 587b8f6013ce41a71ec23f933ef030ffc3efb154 Mon Sep 17 00:00:00 2001 From: Anton Nikolaev Date: Wed, 10 Jun 2020 06:35:58 -0700 Subject: [PATCH] Fix flipper-pkg publishing Summary: Command "oclif-dev manifest" is failing without esModuleInterop set to true, even though it is specified in base config. Because of this, automatic publishing to npm failed yesterday. Reviewed By: jknoxville Differential Revision: D21972747 fbshipit-source-id: ccdd34833f7beb4fbd79a97beeacaf012d5cb0cb --- desktop/pkg/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/desktop/pkg/tsconfig.json b/desktop/pkg/tsconfig.json index ff7073f78..e69693331 100644 --- a/desktop/pkg/tsconfig.json +++ b/desktop/pkg/tsconfig.json @@ -2,7 +2,8 @@ "extends": "../tsconfig.base.json", "compilerOptions": { "outDir": "lib", - "rootDir": "src" + "rootDir": "src", + "esModuleInterop": true }, "references": [ {"path": "../pkg-lib"},