mirror of
https://github.com/tornadocash/fixed-merkle-tree.git
synced 2024-11-22 09:47:15 +01:00
27 lines
490 B
JSON
27 lines
490 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"lib": [
|
||
|
"es2019"
|
||
|
],
|
||
|
"target": "es2018",
|
||
|
"module": "CommonJS",
|
||
|
"moduleResolution": "Node",
|
||
|
"outDir": "./lib",
|
||
|
"rootDir": "src",
|
||
|
"esModuleInterop": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"sourceMap": false,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"declaration": true
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"types",
|
||
|
"**/*.spec.ts"
|
||
|
]
|
||
|
}
|