23 lines
445 B
JSON
23 lines
445 B
JSON
|
|
{
|
||
|
|
"extends": "../tsconfig.base.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"outDir": "./out-tsc/jest",
|
||
|
|
"types": ["jest", "node"],
|
||
|
|
"module": "nodenext",
|
||
|
|
"moduleResolution": "nodenext",
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"jest.config.ts",
|
||
|
|
"src/**/*.test.ts",
|
||
|
|
"src/**/*.spec.ts",
|
||
|
|
"src/**/*.d.ts"
|
||
|
|
],
|
||
|
|
"references": [
|
||
|
|
{
|
||
|
|
"path": "./tsconfig.app.json"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|