Files
flipper/desktop/tsconfig.json
Anton Nikolaev 952cb7783a Allow direct references of doctor and pkg from the main bundle
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
2020-03-14 15:59:22 -07:00

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"]
}