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
16 lines
323 B
JSON
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__/*"]
|
|
}
|