We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed741e8 commit 266207aCopy full SHA for 266207a
src/__mocks__/electron.js
@@ -1,3 +1,4 @@
1
+// @ts-ignore
2
window.Notification = function (title) {
3
this.title = title;
4
@@ -6,6 +7,7 @@ window.Notification = function (title) {
6
7
};
8
9
10
11
window.Audio = class Audio {
12
constructor(path) {
13
this.path = path;
@@ -14,6 +16,7 @@ window.Audio = class Audio {
14
16
play() {}
15
17
18
19
20
window.localStorage = {
21
store: {},
22
getItem: function (key) {
tsconfig.json
@@ -12,7 +12,8 @@
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"types": ["jest"],
- "skipLibCheck": true
+ "skipLibCheck": true,
+ "checkJs": true
},
"include": [
"src/**/*.js",
0 commit comments