mirror of
https://github.com/acid-info/Kurate.git
synced 2025-02-10 14:56:26 +00:00
16 lines
468 B
JSON
16 lines
468 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"moduleResolution": "Node",
|
||
|
"noImplicitAny": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"target": "ES2018",
|
||
|
"module": "CommonJS",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"outDir": "dist",
|
||
|
"typeRoots": ["node_modules/@types", "types"]
|
||
|
},
|
||
|
"include": ["scripts/**/*", "tasks/**/*", "test/**/*", "build/typechain/**/*", "types/**/*"],
|
||
|
"files": ["./hardhat.config.ts"]
|
||
|
}
|