We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 493c3ae commit c1bc1a6Copy full SHA for c1bc1a6
1 file changed
example/tsconfig.json
@@ -1,6 +1,17 @@
1
{
2
- "extends": "expo/tsconfig.base",
3
"compilerOptions": {
+ "allowJs": true,
4
+ "customConditions": ["react-native"],
5
+ "esModuleInterop": true,
6
+ "jsx": "react-jsx",
7
+ "lib": ["DOM", "ESNext"],
8
+ "module": "preserve",
9
+ "moduleDetection": "force",
10
+ "moduleResolution": "bundler",
11
+ "noEmit": true,
12
+ "resolveJsonModule": true,
13
+ "skipLibCheck": true,
14
+ "target": "ESNext",
15
"strict": true,
16
"paths": {
17
"@/*": [
@@ -13,5 +24,13 @@
24
"**/*.tsx",
25
".expo/types/**/*.ts",
26
"expo-env.d.ts"
27
+ ],
28
+ "exclude": [
29
+ "node_modules",
30
+ "babel.config.js",
31
+ "metro.config.js",
32
+ "jest.config.js",
33
+ "android",
34
+ "ios"
35
]
36
}
0 commit comments