-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 667 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "expo/tsconfig.base",
"compilerOptions": {
"composite": true,
"noEmit": false,
"strict": true,
"jsx": "react-native",
"paths": {
"@/*": ["./*"],
"@metamask/connect-multichain": [
"../../packages/connect-multichain/src/index.native.ts"
],
"@metamask/playground-ui": [
"../playground-ui/dist/es/playground-ui.d.mts"
],
"@metamask/playground-ui/*": ["../playground-ui/dist/es/*.d.mts"],
"@metamask/*": ["../../*/src"]
}
},
"references": [{ "path": "../../packages/connect-multichain" }],
"include": ["**/*.ts", "**/*.tsx", ".expo/types/**/*.ts", "expo-env.d.ts"]
}