forked from 0xsend/sendapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 1.01 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
{
"compilerOptions": {
// "noErrorTruncation": true, // uncomment if you want to see full error messages
"strictNullChecks": true,
"noUncheckedIndexedAccess": true,
"strict": true,
"jsx": "preserve",
"paths": {
"app/*": ["./packages/app/*"],
"@my/ui/*": ["./packages/ui/src/*"],
"@my/wagmi/*": ["./packages/wagmi/src/*"],
"@daimo/expo-passkeys/*": ["./packages/daimo-expo-passkeys/src/*"],
"@0xsend/webauthn-authenticator/*": ["./packages/webauthn-authenticator/src/*"],
"@my/playwright/*": ["./packages/playwright/tests/*"],
"@my/snaplet/*": ["./packages/snaplet/*"],
},
"plugins": [
{
// docs: https://github.com/nderscore/tamagui-typescript-plugin#readme
"name": "@nderscore/tamagui-typescript-plugin",
"pathToApp": "apps/next"
}
]
},
"extends": "expo/tsconfig.base",
"exclude": [
"**/node_modules",
"**/dist",
"**/types",
"apps/next/out",
"apps/next/.next",
"apps/next/.tamagui"
]
}