Files
flipper/desktop/tsconfig.base.json
Edward Yerburgh 8a31e984b3 Use QPL-managed QPLCore and PigeonClient (#1612)
Summary:
Pull Request resolved: https://github.com/facebook/flipper/pull/1612

* Use the QPL-managed QPLCore and PigeonClient.

**Facebook:**

js-shared/qpl and js-shared/pigeon-client are maintained by QPL in xplat/js-shared. I've updated the Metro config and tsconfig to allow the packages to be imported without breaking the open-source version.

Reviewed By: passy

Differential Revision: D24358369

fbshipit-source-id: 7f13d6c99d8ca6ebcd0e66bf0e5f25069370cce7
2020-10-26 02:29:09 -07:00

30 lines
738 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": ["es7", "dom", "es2019"],
"esModuleInterop": true,
"target": "ES2019",
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"declaration": true,
"jsx": "react",
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
"composite": true,
"incremental": true,
"baseUrl": ".",
"allowJs": true,
"rootDir": ".",
"paths": {
"flipper": ["./app/src"],
"flipper-plugin": ["./flipper-plugin/src"],
"eslint-plugin-flipper": ["./eslint-plugin-flipper/src"],
"flipper-*": ["./*/src"],
"@js-shared/*": ["../../js-shared/*"],
"*": ["./*", "./types/*"]
}
}
}