Files
flipper/desktop/flipper-plugin/tsconfig.json
Pascal Hartig 7ce86869e4 Build plugins with ES2021
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
2023-08-25 09:43:01 -07:00

18 lines
345 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"lib": ["dom", "ES2021"],
"types": ["jest", "../types/jest-extensions", "react/next", "react-dom/next"]
},
"references": [
{
"path": "../flipper-common"
},
{
"path": "../flipper-plugin-core"
}
]
}