-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.base.json
35 lines (35 loc) · 1.24 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
{
"compilerOptions": {
"baseUrl": "./",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"downlevelIteration": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"experimentalDecorators": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"allowJs": false,
"isolatedModules": true,
"declaration": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"paths": {
"@aelf-web-login/utils": ["./packages/utils/src"],
"@aelf-web-login/wallet-adapter-base": ["./packages/base/src"],
"@aelf-web-login/wallet-adapter-bridge": ["./packages/bridge/src"],
"@aelf-web-login/wallet-adapter-react": ["./packages/react/src/index.tsx"],
"@aelf-web-login/wallet-adapter-portkey-aa": ["./packages/wallets/portkey-aa/src"],
"@aelf-web-login/wallet-adapter-portkey-discover": [
"./packages/wallets/portkey-discover/src"
],
"@aelf-web-login/wallet-adapter-night-elf": ["./packages/wallets/night-elf/src"],
"@aelf-web-login/tools": ["./packages/tools"],
"~/*": ["./*"]
},
"types": ["node", "@testing-library/jest-dom", "vitest/globals"]
}
}