-
Notifications
You must be signed in to change notification settings - Fork 37
/
tsconfig.json
63 lines (63 loc) · 2.14 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compilerOptions": {
"target": "esnext",
"module": "ES2015",
"lib": ["es2021"],
"allowJs": true,
"jsx": "react-native",
"noEmit": true,
"noImplicitAny": false,
"isolatedModules": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": ".",
"resolveJsonModule": true,
"skipLibCheck": true,
"paths": {
"@helium/idls/lib/types/lazy_distributor": [
"./node_modules/@helium/idls/lib/types/lazy_distributor.d.ts"
],
"@helium/idls/lib/types/data_credits": [
"./node_modules/@helium/idls/lib/types/data_credits.d.ts"
],
"@helium/idls/lib/types/helium_entity_manager": [
"./node_modules/@helium/idls/lib/types/helium_entity_manager.d.ts"
],
"@helium/idls/lib/types/helium_sub_daos": [
"./node_modules/@helium/idls/lib/types/helium_sub_daos.d.ts"
],
"@helium/idls/lib/types/treasury_management": [
"./node_modules/@helium/idls/lib/types/treasury_management.d.ts"
],
"@helium/idls/lib/types/voter_stake_registry": [
"./node_modules/@helium/idls/lib/types/voter_stake_registry.d.ts"
],
"@helium/modular-governance-idls/lib/types/proposal": [
"./node_modules/@helium/modular-governance-idls/lib/types/proposal.d.ts"
],
"@helium/modular-governance-idls/lib/types/nft_proxy": [
"./node_modules/@helium/modular-governance-idls/lib/types/nft_proxy.d.ts"
],
"@helium/crypto": ["./node_modules/@helium/crypto-react-native"],
"@assets": ["./src/assets"],
"@components/*": ["./src/components/*"],
"@components": ["src/components/index"],
"@hooks/*": ["./src/hooks/*"],
"@utils/*": ["./src/utils/*"],
"@config/*": ["./src/config/*"],
"@types/*": ["./src/types/*"],
"@features/*": ["./src/features/*"],
"@services/*": ["src/app/services/*"],
"@store/*": ["./src/store/*"],
"@app/*": ["./src/app/*"]
}
},
"exclude": [
"node_modules",
"babel.config.js",
"metro.config.js",
"jest.config.js"
],
"extends": "@react-native/typescript-config/tsconfig.json"
}