Summary: Noticed that flipper-ui-core bundled quite some unused / node based deps. No longer Reviewed By: aigoncharov Differential Revision: D33184489 fbshipit-source-id: a180f9b8f3eb00ffa6c91e0cca654d4b9b609692
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", "ES2019"],
|
|
"types": ["jest"]
|
|
},
|
|
"exclude": [
|
|
"**/node_modules/",
|
|
"**/lib/",
|
|
"**/dist/",
|
|
"flipper-server/static/**"
|
|
]
|
|
}
|