Files
flipper/desktop/pkg/tsconfig.json
Anton Nikolaev 587b8f6013 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
2020-06-10 06:40:39 -07:00

16 lines
323 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"esModuleInterop": true
},
"references": [
{"path": "../pkg-lib"},
{"path": "../plugin-lib"},
{"path": "../test-utils"}
],
"include": ["src"],
"exclude": ["node_modules", "**/__tests__/*"]
}