Files
flipper/desktop/tsconfig.base.json
Michel Weststrate 2383dc85f8 Initialized flipper-plugin library
Summary: Set up an initial library which can (should) be used by plugins in the future.

Reviewed By: jknoxville

Differential Revision: D22019554

fbshipit-source-id: 502b14b34b2c9c117cea377ab6ebbf150e6faee9
2020-07-01 09:12:35 -07:00

41 lines
725 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es7",
"dom",
"es2017"
],
"esModuleInterop": true,
"target": "ES2017",
"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"
],
"flipper-*": [
"./*/src"
],
"*": [
"./*",
"./types/*"
]
}
}
}