23 lines
404 B
JSON
23 lines
404 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "ES2022",
|
|
"noImplicitAny": false,
|
|
"sourceMap": true,
|
|
"outDir": "./lib",
|
|
"declaration": true,
|
|
"types": [
|
|
"node",
|
|
"express",
|
|
"jest"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./test/**/*"
|
|
]
|
|
}
|