mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
28 lines
595 B
JSON
28 lines
595 B
JSON
// tsconfig.json
|
|
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["es5", "es6"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"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/**/*"
|
|
]
|
|
}
|