Appease the linter

This commit is contained in:
Travis Ralston 2018-03-21 20:41:39 -06:00
parent 1e52617df1
commit cee2e72a46
2 changed files with 3 additions and 2 deletions

View file

@ -10,6 +10,7 @@
"build": "rimraf build && npm run-script build:web && npm run-script build:app", "build": "rimraf build && npm run-script build:web && npm run-script build:app",
"build:web": "webpack --progress --profile --bail", "build:web": "webpack --progress --profile --bail",
"build:app": "tsc -p tsconfig-app.json", "build:app": "tsc -p tsconfig-app.json",
"lint": "npm run-script lint:app",
"lint:app": "tslint --project ./tsconfig-app.json -t stylish" "lint:app": "tslint --project ./tsconfig-app.json -t stylish"
}, },
"repository": { "repository": {

View file

@ -1,8 +1,8 @@
import * as cache from "memory-cache"; import * as memoryCache from "memory-cache";
export class MemoryCache { export class MemoryCache {
private internalCache = new cache.Cache(); private internalCache = new memoryCache.Cache();
constructor() { constructor() {
} }