25 lines
394 B
JSON
25 lines
394 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"esnext",
|
|
],
|
|
"module": "commonjs",
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"target": "es6",
|
|
"outDir": "dist",
|
|
"downlevelIteration": true
|
|
},
|
|
"include": [
|
|
"test",
|
|
"contracts"
|
|
],
|
|
"exclude": [
|
|
"**/dist",
|
|
"**/build"
|
|
]
|
|
}
|