-
Notifications
You must be signed in to change notification settings - Fork 139
/
tsconfig.json
30 lines (30 loc) · 982 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
{
"compilerOptions": {
"module": "esnext",
"target": "es2020",
"declaration": true,
"lib": ["es2020", "es2018.promise"],
"outDir": "./dist/",
"baseUrl": "src",
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"experimentalDecorators": true,
// "strict": true,
"strictNullChecks": true,
"strictFunctionTypes": false
},
"include": [
"src",
"src/abi/*.json",
"src/pools/stablePool/stablePoolAbi.json",
"src/pools/weightedPool/weightedPoolAbi.json",
"src/pools/elementPool/ConvergentCurvePool.json",
"src/pools/linearPool/linearPoolAbi.json",
"src/pools/composableStable/ComposableStable.json",
"src/pools/xaveFxPool/fxPoolAbi.json",
"src/pools/gyroEV2Pool/gyroEV2Abi.json",
"src/pools/gyro2V2Pool/gyro2V2Abi.json"
],
"files": ["hardhat.config.ts"]
}