mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
27 lines
568 B
JSON
27 lines
568 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/**/*"
|
||
|
]
|
||
|
}
|