Files
flipper/desktop/flipper-ui-browser/tsconfig.json
Pascal Hartig 554d2f9b83 Bump ES level to 2021
Summary: Updating the remaining tsconfigs to build for an ES2021 target.

Reviewed By: antonk52

Differential Revision: D48687661

fbshipit-source-id: 2761704d251f701594ca5d362a17731f287088ed
2023-08-29 05:06:18 -07:00

24 lines
440 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"lib": ["dom", "ES2021"],
"types": ["../types/flipperGlobals", "react/next", "react-dom/next"]
},
"references": [
{
"path": "../flipper-common"
},
{
"path": "../flipper-frontend-core"
},
{
"path": "../flipper-server-client"
},
{
"path": "../flipper-ui-core"
}
]
}