Exclude detox from typescript check (#6065)
This commit is contained in:
parent
25022bb779
commit
8bd5261352
1 changed files with 2 additions and 2 deletions
|
|
@ -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/**/*",
|
||||
],
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue