Exclude detox from typescript check (#6065)

This commit is contained in:
Elias Nahum
2022-03-18 13:38:13 -03:00
committed by GitHub
parent 25022bb779
commit 8bd5261352

View File

@@ -53,7 +53,6 @@
"@share/*": ["share_extension/*"],
"@store": ["app/store/index"],
"@store/*": ["app/store/*"],
"@support/*": ["detox/e2e/support/*"],
"@telemetry/*": ["/app/telemetry/*"],
"@typings/*": ["types/*"],
"@test/*": ["test/*"],
@@ -65,12 +64,13 @@
]
}
},
"include": ["app/**/*", "share_extensionn/**/*", "test/**/*", "detox/**/*", "types/**/*"],
"include": ["app/**/*", "share_extensionn/**/*", "test/**/*", "types/**/*"],
"exclude": [
"node_modules",
"build",
"babel.config.js",
"metro.config.js",
"jest.config.js",
"detox/**/*",
],
}