From 74dabf9e751e44865187e0f914fb9f3249ae7737 Mon Sep 17 00:00:00 2001 From: Bernie Reiter Date: Wed, 8 Apr 2020 22:57:30 +0200 Subject: [PATCH] Typescript: Exclude mobile files --- tsconfig.base.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index e17cd0ff564d8..afabdbaf82e30 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -33,5 +33,13 @@ "typeRoots": [ "./node_modules/@types" ] }, - "exclude": [ "**/benchmark", "**/test/**", "**/build/**", "**/build-*/**" ] + "exclude": [ + "**/benchmark", + "**/test/**", + "**/build/**", + "**/build-*/**", + "**/*.android.js", + "**/*.ios.js", + "**/*.native.js" + ] }