diff --git a/tsconfig.json b/tsconfig.json index 80f7c82..1154e9c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,11 +10,26 @@ "allowJs": true, "esModuleInterop": true, "jsx": "react-native", - "lib": ["DOM", "ESNext"], + "lib": [ + "DOM", + "ESNext" + ], "resolveJsonModule": true, "target": "ESNext", "moduleResolution": "node", + "noEmit": true }, - "include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"], - "exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"] + "include": [ + "**/*.ts", + "**/*.tsx", + ".expo/types/**/*.ts", + "expo-env.d.ts" + ], + "exclude": [ + "node_modules", + "babel.config.js", + "metro.config.js", + "jest.config.js" + ], + "extends": "expo/tsconfig.base" }