From c647191ac1ea1d3ffa2e81a7ce316706d89d222b Mon Sep 17 00:00:00 2001 From: Thomas Rubini <74205383+ThomasRubini@users.noreply.github.com> Date: Mon, 27 Mar 2023 11:57:57 +0200 Subject: [PATCH] update tsconfig.json --- tsconfig.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 45a6c70..99cc484 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,3 +1,10 @@ { - "extends": "@tsconfig/react-native/tsconfig.json" + "extends": "@tsconfig/react-native/tsconfig.json", + "compilerOptions": { + "target": "es6", + "esModuleInterop": true, + "noFallthroughCasesInSwitch": true, + "moduleResolution": "node", + "jsx": "react-jsx" + }, }