Summary: Updating the remaining tsconfigs to build for an ES2021 target. Reviewed By: antonk52 Differential Revision: D48687661 fbshipit-source-id: 2761704d251f701594ca5d362a17731f287088ed
35 lines
654 B
JSON
35 lines
654 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": "src",
|
|
"esModuleInterop": true,
|
|
"emitDeclarationOnly": true,
|
|
"lib": ["DOM", "ES2021"],
|
|
"types": [
|
|
"../types/flipperGlobals"
|
|
]
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../flipper-common"
|
|
},
|
|
{
|
|
"path": "../flipper-frontend-core"
|
|
},
|
|
{
|
|
"path": "../flipper-server-client"
|
|
},
|
|
{
|
|
"path": "../flipper-server-companion"
|
|
},
|
|
{
|
|
"path": "../flipper-server-core"
|
|
},
|
|
{
|
|
"path": "../flipper-ui-core"
|
|
}
|
|
],
|
|
"exclude": ["**/node_modules/", "**/__tests__/", "**/lib/"]
|
|
}
|