Summary: Updating the remaining tsconfigs to build for an ES2021 target. Reviewed By: antonk52 Differential Revision: D48687661 fbshipit-source-id: 2761704d251f701594ca5d362a17731f287088ed
19 lines
341 B
JSON
19 lines
341 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"incremental": false,
|
|
"composite": false,
|
|
"allowJs": false,
|
|
// for unit tests:
|
|
"lib": ["DOM", "ES2021"],
|
|
"types": ["jest"]
|
|
},
|
|
"exclude": [
|
|
"**/node_modules/",
|
|
"**/lib/",
|
|
"**/dist/",
|
|
"flipper-server/static/**"
|
|
]
|
|
}
|