-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 1003 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
// 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": {
"skipLibCheck": true, // Important for ambient types (e.g., vite-env.d.ts) to work
"types": ["node"],
"paths": {
"@aave/core": ["./packages/core/src"],
"@aave/client": ["./packages/client/src"],
"@aave/client/actions": ["./packages/client/src/actions"],
"@aave/client/ethers": ["./packages/client/src/ethers"],
"@aave/client/privy": ["./packages/client/src/privy"],
"@aave/client/test-utils": ["./packages/client/src/test-utils"],
"@aave/client/viem": ["./packages/client/src/viem"],
"@aave/graphql": ["./packages/graphql/src"],
"@aave/types": ["./packages/types/src"]
}
},
"include": ["**/*.ts"],
"exclude": ["dist", "node_modules", "examples", "templates"]
}