Files
flipper/desktop/flipper-server-core/tsconfig.json
Andrey Goncharov b025cda861 Stop doing eval to load server add-ons
Summary:
Closes https://github.com/facebook/flipper/issues/4203

CHANGELOG: Stop doing eval to load server add-ons

On Windows `details.path`  contains backslashes. When we interpolate it, it loses one of the backslashes and subsequently `require` fails to load it. If we do not interpolate it (by ditching eval) it has the double backslash and work just fine.

Reviewed By: lblasa

Differential Revision: D40715523

fbshipit-source-id: 50c52f2a53690b585a32d3009f1692cf0b0d8428
2022-10-26 05:00:00 -07:00

36 lines
614 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"esModuleInterop": true,
"types": [
"../types/JSONStream",
"../types/adbkit",
"../types/openssl-wrapper",
"../types/adbkit-logcat",
"../types/flipperGlobals"
]
},
"references": [
{
"path": "../doctor"
},
{
"path": "../flipper-common"
},
{
"path": "../flipper-plugin-core"
},
{
"path": "../flipper-server-companion"
},
{
"path": "../plugin-lib"
},
{
"path": "../pkg-lib"
}
]
}