forked from balancer/b-sdk
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtsconfig.json
30 lines (29 loc) · 893 Bytes
/
tsconfig.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
{
"include": ["src", "test", "examples"],
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"outDir": "dist",
// "declaration": true,
// "sourceMap": true,
"strict": true,
"noImplicitAny": false,
// "strictNullChecks": true,
// "strictFunctionTypes": true,
// "strictPropertyInitialization": true,
// "noImplicitThis": true,
// "alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"moduleResolution": "Bundler",
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["vitest/globals", "vite/client"],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@berachain-foundation/berancer-sdk": ["src/index.ts"]
},
}
}