fix: tsconfig in service worker

This commit is contained in:
三咲智子 Kevin Deng 2023-07-03 00:41:19 +08:00
parent 171f0ec857
commit d4ce90a7e8
No known key found for this signature in database
GPG key ID: 69992F2250DFD93E

View file

@ -1,8 +1,9 @@
{ {
"compilerOptions": { "compilerOptions": {
"lib": ["ESNext", "WebWorker"], "lib": ["ESNext", "WebWorker", "DOM.Iterable"],
"types": ["vite/client", "service-worker"] "types": ["vite/client"]
}, },
"include": ["./"], "include": ["./"],
"exclude": [],
"extends": "../tsconfig.json" "extends": "../tsconfig.json"
} }