Rollback removing paths from tsconfig.json
Summary: Returning back paths config in tsconfig.json which I removed recently. Without them typescript compilation is required when exported APIs changed in dependency packages, e.g. in "flipper-plugin", otherwise lint/tests fails. So it's better to keep them for convenience. Reviewed By: mweststrate Differential Revision: D27619748 fbshipit-source-id: bb5929526ee2bf6bd06a5f15dbf898b7ca6deea7
This commit is contained in:
committed by
Facebook GitHub Bot
parent
49c4e2f56d
commit
04c5fb61f4
@@ -23,6 +23,18 @@
|
|||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"rootDir": ".",
|
"rootDir": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
|
"flipper": [
|
||||||
|
"./app/src"
|
||||||
|
],
|
||||||
|
"flipper-plugin": [
|
||||||
|
"./flipper-plugin/src"
|
||||||
|
],
|
||||||
|
"eslint-plugin-flipper": [
|
||||||
|
"./eslint-plugin-flipper/src"
|
||||||
|
],
|
||||||
|
"flipper-*": [
|
||||||
|
"./*/src"
|
||||||
|
],
|
||||||
"@js-shared/*": [
|
"@js-shared/*": [
|
||||||
"../../js-shared/*"
|
"../../js-shared/*"
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user