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,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,

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";
// noinspection AngularMissingOrInvalidDeclarationInModule
@Component({
template: ""
})
export class HorizontalScroller
{
@ViewChild("scrollView", { static: true }) private scrollView: ElementRef;