From 4d18e0ceb498cc44d2d060dc4270a79a242c3ead Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20N=C3=A9grier?= Date: Tue, 25 May 2021 10:43:01 +0200 Subject: [PATCH] Removing parsing of TSX files in "maps" container The TSX extension is used by Typescript (for JSX like files) but ALSO by Tiled (for tilesets). We don't need the Typescript TSX files so this PR is preventing Typescript from parsing those files in the "maps" container. --- maps/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/maps/tsconfig.json b/maps/tsconfig.json index 9a140744..22abe8d0 100644 --- a/maps/tsconfig.json +++ b/maps/tsconfig.json @@ -20,5 +20,8 @@ "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ "noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */ - } + }, + "include": [ + "**/*.ts" + ] }