mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
4800889442
* fixed checks * updated sushi incentive comments * fixed index.ts errors * removed yarn.lock since it is not used anywhere, updated gh actions config and package-lock.json Co-authored-by: Ishan Jain <contact@ishanjain.me> Co-authored-by: Prayuman Verma <pradyumnverma27@gmail.com>
28 lines
591 B
JSON
28 lines
591 B
JSON
// tsconfig.json
|
|
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["es5", "es6"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "dist",
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es5",
|
|
},
|
|
"exclude": ["artifacts", "node_modules"],
|
|
"files": ["./hardhat.config.ts"],
|
|
"include": [
|
|
"artifacts/**/*",
|
|
"artifacts/**/*.json",
|
|
"scripts/**/*",
|
|
"tasks/**/*",
|
|
"test/**/*",
|
|
"typechain/**/*",
|
|
"types/**/*",
|
|
"status-checks/*"
|
|
]
|
|
}
|