29 lines
744 B
JSON
29 lines
744 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"lib": ["es2022", "dom"],
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"types": ["node", "express", "vitest/globals"],
|
|
"paths": {
|
|
"@/*": ["./*"],
|
|
"@core/*": ["../../core/*"],
|
|
"@adapters/*": ["../../adapters/*"],
|
|
"@testing/*": ["../../testing/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.mock.ts"]
|
|
}
|