mirror of
https://github.com/mempool/mempool.git
synced 2024-11-20 18:32:19 +01:00
22 lines
403 B
JSON
22 lines
403 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "esnext",
|
|
"lib": ["es2019", "dom"],
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"sourceMap": false,
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"dist/**"
|
|
]
|
|
} |