Summary: This diff fixes an issue where the `scripts` folder wasn't automatically type checked by TypeScript, and as a result `yarn flipper-server` was broken atm. Reviewed By: nikoant Differential Revision: D33348825 fbshipit-source-id: 059a834cacb881d45ae4b0933af3f1feabb90182
26 lines
403 B
JSON
26 lines
403 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": ".",
|
|
"lib": ["ES2019"],
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"types": ["jest"]
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../flipper-common"
|
|
},
|
|
{
|
|
"path": "../pkg-lib"
|
|
},
|
|
{
|
|
"path": "../plugin-lib"
|
|
},
|
|
{
|
|
"path": "../flipper-plugin"
|
|
}
|
|
]
|
|
}
|