From 4d9fce71d811ecc276dc46361c84a3a7e75cda19 Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Sun, 29 Oct 2023 15:05:35 +0100 Subject: [PATCH] Add files for typescript-eslint --- guest-list-mobile/tsconfig.json | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/guest-list-mobile/tsconfig.json b/guest-list-mobile/tsconfig.json index b9567f6..22a3ca8 100644 --- a/guest-list-mobile/tsconfig.json +++ b/guest-list-mobile/tsconfig.json @@ -1,6 +1,18 @@ { - "extends": "expo/tsconfig.base", + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "eslint-config-upleveled/tsconfig.base.json", "compilerOptions": { - "strict": true - } + "jsx": "react-native", + "target": "ESNext" + }, + "include": [ + "**/.eslintrc.cjs", + "**/*.ts", + "**/*.tsx", + "**/*.js", + "**/*.jsx", + "**/*.cjs", + "**/*.mjs" + ], + "exclude": ["node_modules"] }