Summary: Starting small as this will unblock D48642120. If it works without causing any issues, I'll update the remaining ones. We're on Node v18 everywhere now, so this should be compatible. According to https://node.green/ that should cover nearly everything. Reviewed By: lblasa Differential Revision: D48683680 fbshipit-source-id: 26d2788468b673793b70b6339d1845c1dcf7e05d
28 lines
593 B
JSON
28 lines
593 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"outDir": "lib",
|
|
"lib": ["DOM", "ES2021"],
|
|
// TODO: ideally we'd move those into specific packages
|
|
"types": [
|
|
"../types/ReactDebounceRender",
|
|
"../types/json-format-highlight",
|
|
"../types/memoize-weak",
|
|
"../types/XmlBeautifier",
|
|
"react/next",
|
|
"react-dom/next"
|
|
]
|
|
},
|
|
"include": ["public/", "fb/"],
|
|
"exclude": [
|
|
"**/lib/",
|
|
"**/dist/",
|
|
"**/node_modules/",
|
|
"**/__tests__/",
|
|
"**/__test__/"
|
|
]
|
|
}
|