mirror of
https://github.com/tornadocash/fixed-merkle-tree.git
synced 2024-11-22 01:37:09 +01:00
27 lines
490 B
JSON
27 lines
490 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2019"
|
|
],
|
|
"target": "es2020",
|
|
"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"
|
|
]
|
|
}
|