mirror of
https://github.com/tornadocash/tornado-relayer
synced 2024-02-02 15:04:06 +01:00
26 lines
462 B
JSON
26 lines
462 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es6",
|
|
"es2020"
|
|
],
|
|
"target": "es2020",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "./build",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"test"
|
|
]
|
|
}
|