Fix type checking of demo site

This commit is contained in:
Jordan Eldredge 2018-12-30 22:56:09 -08:00
parent c834bc31b4
commit 252abbd3a9
3 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
import WebampLazy from "../webampLazy";
import { LoadedURLTrack } from "../types";
import WebampLazy from "../../js/webampLazy";
import { LoadedURLTrack } from "../../js/types";
export default function enableMediaSession(webamp: WebampLazy) {
if ("mediaSession" in navigator) {

View file

@ -1,5 +1,5 @@
import { DeepPartial } from "redux";
import { AppState } from "../types";
import { AppState } from "../../js/types";
const defaultTracksState = {
"0": {

View file

@ -12,6 +12,6 @@
"noEmit": true,
"pretty": true
},
"include": ["js/**/*.js", "js/**/*.ts"],
"include": ["**/*.js", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "**/*.spec.ts"]
}