Summary: This diff allows direct referencing pkg and doctor packages from the main bundle so they can be changed and used in the main app without publishing to npm Reviewed By: mweststrate Differential Revision: D20390416 fbshipit-source-id: af625a8b7cead4481743a88aec198493d363ce76
26 lines
754 B
JSON
26 lines
754 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": ["es7", "dom", "es2017"],
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"flipper": ["./src"],
|
|
"flipper-doctor": ["./doctor/src"],
|
|
"flipper-pkg": ["./pkg/src"],
|
|
"live-plugin-manager": ["./types/live-plugin-manager.d.tsx"]
|
|
},
|
|
"strict": true
|
|
},
|
|
"include": ["src/**/*", "doctor/**/*", "pkg/**/*", "static/**/*", "scripts/**/*", "types/**/*", "headless/**/*", "plugins/**/*"],
|
|
"exclude": ["node_modules", "**/*.spec.ts"]
|
|
}
|