forked from Instawork/hyperview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 743 Bytes
/
Copy pathtsconfig.json
File metadata and controls
31 lines (31 loc) · 743 Bytes
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
{
"extends": "@tsconfig/react-native/tsconfig.json",
"compilerOptions": {
"allowJs": false,
"checkJs": false,
"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",
"dom"
],
"moduleSuffixes": [".ios", ".android", ".web", ""],
"outDir": "lib",
"paths": {
"hyperview/*": ["./*"]
},
"types": ["react-native", "jest", "node"],
"typeRoots": ["./node_modules/@types", "./@types"]
},
"exclude": ["**/*.js", "**/*.jsx", "demo/**/*"]
}