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
41 lines
725 B
JSON
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/*"
|
|
]
|
|
}
|
|
}
|
|
}
|