-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (46 loc) · 1.5 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
{
"compilerOptions": {
"rootDir": ".",
"strict": false,
"module": "esnext",
"target": "es6",
"lib": ["es2021", "DOM"],
"sourceMap": true,
"esModuleInterop": true,
"noImplicitThis": true,
"declaration": true,
"declarationDir": "dist",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"moduleResolution": "node",
"baseUrl": "src",
"outDir": "dist",
"typeRoots": ["node_modules/@types"],
"types": [],
"resolveJsonModule": true,
"noUnusedParameters": true,
"paths": {
"@wagmi/cli": ["packages/cli/src"],
"@wagmi/cli/*": ["packages/cli/src/*"],
"@wagmi/connectors": ["packages/connectors/src"],
"@wagmi/connectors/*": ["packages/connectors/src/*"],
"@wagmi/core": ["packages/core/src"],
"@wagmi/core/*": ["packages/core/src/*"],
"wagmi": ["packages/react/src"],
"wagmi/*": ["packages/react/src/*"],
// TODO: Remove once issue is fixed
// https://github.com/microsoft/TypeScript/issues/48212
"@safe-global/safe-apps-sdk": [
"node_modules/@safe-global/safe-apps-sdk/dist/src"
],
"abitype": ["node_modules/abitype/dist/types"],
"abitype/*": ["node_modules/abitype/dist/types/*"],
"viem": ["node_modules/viem/dist/types"],
"viem/*": ["node_modules/viem/dist/types/*"]
},
},
"include": ["package.json", "src/**/*.ts"],
"exclude": ["node_modules", "example/**","node_modules/abitype/**",
"node_modules/viem/**"],
"compileOnSave": false
}