23 lines
495 B
JSON
23 lines
495 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../dist/out-tsc",
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"types": ["node"],
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"target": "es2021",
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"references": [
|
|
{
|
|
"path": "../../libs/shared-dto/tsconfig.lib.json"
|
|
},
|
|
{
|
|
"path": "../../libs/prisma-generated/tsconfig.lib.json"
|
|
}
|
|
]
|
|
}
|