mempool/backend/tsconfig.json

27 lines
512 B
JSON
Raw Normal View History

2019-07-21 16:59:47 +02:00
{
"compilerOptions": {
"module": "commonjs",
"target": "esnext",
2022-07-07 21:21:30 +02:00
"types": ["node", "jest"],
2021-12-09 10:24:29 +01:00
"lib": ["es2019", "dom"],
"strict": true,
2023-03-19 05:04:36 +01:00
"skipLibCheck": true,
"noImplicitAny": false,
"sourceMap": false,
"outDir": "dist",
"moduleResolution": "node",
"typeRoots": [
"node_modules/@types"
],
"allowSyntheticDefaultImports": true,
2022-08-29 23:36:18 +02:00
"esModuleInterop": true,
"allowJs": true,
},
"include": [
"src/**/*.ts"
],
"exclude": [
"dist/**"
]
2022-07-07 21:21:30 +02:00
}