Fixing release compilation

This commit is contained in:
Zoe Roux 2021-03-25 22:24:33 +01:00
parent 481492b8f6
commit 46a5b53af0
2 changed files with 6 additions and 4 deletions

View File

@ -54,7 +54,6 @@
"optimization": true, "optimization": true,
"outputHashing": "all", "outputHashing": "all",
"sourceMap": false, "sourceMap": false,
"extractCss": true,
"namedChunks": false, "namedChunks": false,
"aot": true, "aot": true,
"extractLicenses": true, "extractLicenses": true,
@ -98,7 +97,7 @@
"tsConfig": "tsconfig.json", "tsConfig": "tsconfig.json",
"exclude": [ "exclude": [
"**/node_modules/**", "**/node_modules/**",
"dist" "dist"
] ]
} }
} }

View File

@ -1,7 +1,10 @@
import { ElementRef, ViewChild } from "@angular/core"; import { Component, ElementRef, ViewChild } from "@angular/core";
import { MatButton } from "@angular/material/button"; import { MatButton } from "@angular/material/button";
// noinspection AngularMissingOrInvalidDeclarationInModule
@Component({
template: ""
})
export class HorizontalScroller export class HorizontalScroller
{ {
@ViewChild("scrollView", { static: true }) private scrollView: ElementRef; @ViewChild("scrollView", { static: true }) private scrollView: ElementRef;