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