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