Files
flipper/desktop/scripts/tsconfig.json
Michel Weststrate dda68de445 Fix issue where TypeScript errors in scripts/ folder weren't picked up
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
2021-12-29 06:49:14 -08:00

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"
}
]
}