mirror of
https://github.com/acid-info/Kurate.git
synced 2025-02-05 04:24:01 +00:00
657b850a4e
Co-authored-by: Philippe Schommers <philippe@schommers.be>
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"]
|
|
}
|