-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1.66 KB
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 1.66 KB
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
{
// This root tsconfig is solely used for IDE support, it is not used for building the project.
// See the tsconfig.build.json file for the actual build configuration of each package.
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"skipLibCheck": true, // Important for ambient types (e.g., vite-env.d.ts) to work
"types": ["node"],
"paths": {
"@aave/core": ["./packages/core/src"],
"@aave/core/testing": ["./packages/core/src/testing"],
"@aave/client": ["./packages/client/src"],
"@aave/client/actions": ["./packages/client/src/actions"],
"@aave/client/utils": ["./packages/client/src/utils"],
"@aave/client/ethers": ["./packages/client/src/ethers"],
"@aave/client/privy": ["./packages/client/src/privy"],
"@aave/client/thirdweb": ["./packages/client/src/thirdweb"],
"@aave/client/testing": ["./packages/client/src/testing"],
"@aave/client/viem": ["./packages/client/src/viem"],
"@aave/graphql": ["./packages/graphql/src"],
"@aave/graphql/schema": ["./packages/graphql/src/schema"],
"@aave/graphql/testing": ["./packages/graphql/src/testing"],
"@aave/react": ["./packages/react/src"],
"@aave/react/utils": ["./packages/react/src/utils"],
"@aave/react/ethers": ["./packages/react/src/ethers"],
"@aave/react/privy": ["./packages/react/src/privy"],
"@aave/react/thirdweb": ["./packages/react/src/thirdweb"],
"@aave/react/viem": ["./packages/react/src/viem/index"],
"@aave/types": ["./packages/types/src"]
}
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["dist", "node_modules", "examples", "templates"]
}