forked from sei-protocol/sei-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
33 lines (32 loc) · 942 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
28
29
30
31
32
33
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"strict": true,
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"noImplicitAny": false,
"lib": ["ES2022"],
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"declaration": false,
"baseUrl": "./",
"paths": {
"@sei-js/proto/*": ["packages/proto/dist/esm/codegen/*", "packages/proto/dist/cjs/codegen/*"],
"@sei-js/cosmjs/*": ["packages/cosmjs/dist/esm/*", "packages/cosmjs/dist/cjs/*"],
"@sei-js/evm/*": ["packages/evm/dist/esm/*", "packages/evm/dist/cjs/*"],
"@sei-js/registry/*": ["packages/registry/dist/esm/*", "packages/registry/dist/cjs/*"]
}
},
"exclude": [
"node_modules",
"dist",
"**/*.spec.ts",
"**/*.test.ts",
"**/*.spec.js",
"**/*.test.js",
"**/__tests__/**/*"
]
}