Skip to content

Commit

Permalink
fixup! Make tsconfig self-contained
Browse files Browse the repository at this point in the history
  • Loading branch information
NSeydoux committed Aug 2, 2024
1 parent 897c34c commit f2247b5
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit f2247b5

Please sign in to comment.