Summary: "flipper-pkg" added ~2MB to Flipper disttributive size, because of heavy dependencies which are only required for CLI functionality. See size warning in diff D21068373 in this stack where I added pkg as dependency to flipper. Here I'm splitting it into library and CLI packages, so Flipper app will only reference the library. Reviewed By: passy Differential Revision: D21087336 fbshipit-source-id: d9d62f1e75a835d1c0fa78ff1addb0d9a761a9c7
16 lines
441 B
JSON
16 lines
441 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"flipper": ["./app/src"],
|
|
"flipper-doctor": ["./doctor/src"],
|
|
"flipper-pkg": ["./pkg/src"],
|
|
"flipper-pkg-lib": ["./pkg-lib/src"],
|
|
"live-plugin-manager": ["./types/live-plugin-manager.d.tsx"],
|
|
"flipper-babel-transformer": ["./babel-transformer/src"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|