Files
flipper/flipper-js-client-sdk/tsconfig.json
Timur Valiev 896a90aa26 update js-client api (migrate to TS)
Summary:
JS/TS api:
- migrate to TS
- some refactoring (get rid of bridge, make client abstract)

Implementation isn't full yet, things to be implemented:
- let plugins connect on init command from Flipper
- implement Responder

Further plans:
- make fully compatible with react-native api without breaking changes

Reviewed By: mweststrate

Differential Revision: D21839377

fbshipit-source-id: 9e9fe4ad01632f958b59eb255c703c6cbc5fafe2
2020-06-11 08:45:35 -07:00

33 lines
586 B
JSON

{
"compilerOptions": {
"outDir": "lib",
"rootDir": "src",
"esModuleInterop": true,
"target": "ES2017",
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
"downlevelIteration": true,
"module": "commonjs",
"lib": [
"es7",
"dom",
"es2017"
],
"composite": true,
"baseUrl": ".",
"allowJs": true
},
"include": [
"src"
],
"exclude": [
"node_modules",
"**/__tests__/*"
]
}