mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00

Without this, Webpack errors out when building tests due to theme components missing from the TS compilation
21 lines
327 B
JSON
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"
|
|
],
|
|
}
|