mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 10:15:31 +00:00
Fix type checking of demo site
This commit is contained in:
parent
c834bc31b4
commit
252abbd3a9
3 changed files with 4 additions and 4 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import { DeepPartial } from "redux";
|
||||
import { AppState } from "../types";
|
||||
import { AppState } from "../../js/types";
|
||||
|
||||
const defaultTracksState = {
|
||||
"0": {
|
||||
|
|
|
|||
|
|
@ -12,6 +12,6 @@
|
|||
"noEmit": true,
|
||||
"pretty": true
|
||||
},
|
||||
"include": ["js/**/*.js", "js/**/*.ts"],
|
||||
"include": ["**/*.js", "**/*.ts", "**/*.tsx"],
|
||||
"exclude": ["node_modules", "**/*.spec.ts"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue