-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
37 lines (37 loc) · 957 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "React Native",
"_version": "3.0.2",
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"types": ["react-native", "jest"],
"lib": [
"es2019",
"es2020.bigint",
"es2020.date",
"es2020.number",
"es2020.promise",
"es2020.string",
"es2020.symbol.wellknown",
"es2021.promise",
"es2021.string",
"es2021.weakref",
"es2022.array",
"es2022.object",
"es2022.string"
],
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": false,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"jsx": "react-native",
"moduleResolution": "node",
"noEmit": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true
},
"exclude": ["node_modules", "babel.config.js", "metro.config.js", "jest.config.js"]
}