2022-10-12 01:19:22 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "CommonJS",
|
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"target": "ESNext",
|
|
|
|
"outDir": "./dist",
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"types": ["node", "mocha"],
|
|
|
|
"typeRoots": ["./node_modules/@types"],
|
|
|
|
"declarationMap": true,
|
|
|
|
"inlineSourceMap": false,
|
|
|
|
"inlineSources": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
2022-10-17 04:35:12 +00:00
|
|
|
"lib": ["ESNext"],
|
|
|
|
"incremental": true
|
2022-10-12 01:19:22 +00:00
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"transpileOnly": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
]
|
|
|
|
}
|