Files
dspace-angular/tsconfig.spec.json
Yura Bondarenko 621a874b29 87968: Include theme modules in tsconfig.spec.ts
Without this, Webpack errors out when building tests due to theme components missing from the TS compilation
2022-04-08 17:57:15 +02:00

21 lines
327 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"outDir": "./out-tsc/spec",
"types": [
"jasmine",
"node"
]
},
"files": [
"src/test.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.spec.ts",
"src/**/*.d.ts",
"src/themes/**/*.module.ts"
],
}