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 ce7a0a5 commit 62436eeCopy full SHA for 62436ee
test/react-native-app/tsconfig.json
@@ -1,10 +1,30 @@
1
{
2
- "extends": "expo/tsconfig.base",
3
"compilerOptions": {
4
- "strict": true,
5
- "jsx": "react-native",
+ "target": "esnext",
+ "lib": ["dom", "esnext"],
+ "allowJs": true,
6
+ "skipLibCheck": true,
7
"esModuleInterop": true,
8
"allowSyntheticDefaultImports": true,
- "skipLibCheck": true
9
- }
+ "strict": true,
10
+ "forceConsistentCasingInFileNames": true,
11
+ "moduleResolution": "node",
12
+ "resolveJsonModule": true,
13
+ "isolatedModules": true,
14
+ "noEmit": true,
15
+ "jsx": "react-native",
16
+ "baseUrl": ".",
17
+ "paths": {
18
+ "*": ["*"]
19
+ }
20
+ },
21
+ "include": [
22
+ "**/*.ts",
23
+ "**/*.tsx"
24
+ ],
25
+ "exclude": [
26
+ "node_modules",
27
+ "babel.config.js",
28
+ "metro.config.js"
29
+ ]
30
}
0 commit comments