forked from ant-design/ant-design-web3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
27 lines (26 loc) · 857 Bytes
/
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
{
"compilerOptions": {
"baseUrl": "./",
"target": "esnext",
"module": "ESNext",
"moduleResolution": "node",
"jsx": "react-jsx",
"esModuleInterop": true,
"experimentalDecorators": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"declaration": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"paths": {
"@@/*": [".dumi/tmp/*"],
"@ant-design/web3": ["./packages/web3/src/index.ts"],
"@ant-design/web3-common": ["./packages/common/src/index.ts"],
"@ant-design/web3-icons": ["./packages/icons/src/index.ts"],
"@ant-design/web3-assets": ["./packages/assets/src/index.ts"],
"@ant-design/web3-wagmi": ["./packages/wagmi/src/index.ts"],
"@ant-design/web3-ethereum": ["./packages/ethereum/src/index.ts"]
}
}
}