-
Notifications
You must be signed in to change notification settings - Fork 8
/
tsconfig.base.json
61 lines (61 loc) · 1.96 KB
/
tsconfig.base.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
{
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"paths": {
"@0xsend/webauthn-authenticator/*": ["./packages/webauthn-authenticator/src/*"],
"@daimo/expo-passkeys/*": ["./packages/daimo-expo-passkeys/src/*"],
"@my/contracts/*": ["./packages/contracts/out/*", "./packages/contracts/broadcast/*"],
"@my/playwright/*": ["./packages/playwright/tests/*"],
"@my/snaplet/*": ["./packages/snaplet/*"],
"@my/supabase/*": ["./supabase/*"],
"@my/ui/*": ["./packages/ui/src/*"],
"@my/wagmi": ["./packages/wagmi/src"],
"@my/wagmi/*": ["./packages/wagmi/src/*"],
"@my/workflows/*": ["./packages/workflows/src/*"],
"app/*": ["packages/app/*"]
},
"importHelpers": true,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"esModuleInterop": true,
"preserveSymlinks": true,
"incremental": true,
"module": "ESNext",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"noEmitOnError": false,
"noImplicitAny": false,
"noImplicitReturns": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"experimentalDecorators": true,
"useUnknownInCatchVariables": false,
"preserveConstEnums": true,
"noUncheckedIndexedAccess": true,
"strictNullChecks": true,
// DONT DO THIS so jsdoc will remain
"removeComments": false,
"strict": true,
"skipLibCheck": true,
"typeRoots": ["node_modules/@types", "environment.d.ts", "globals.d.ts"],
"sourceMap": false,
"target": "ESNext",
"types": ["node"],
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
"resolveJsonModule": true,
"plugins": [
{
// docs: https://github.com/nderscore/tamagui-typescript-plugin#readme
"name": "@nderscore/tamagui-typescript-plugin",
"pathToApp": "apps/next"
}
]
},
"exclude": ["_"],
"typeAcquisition": {
"enable": true
}
}