-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TS Service Worker + Updated Tooling!
Unrelated to Flatlands, I learned today that with Safari 17 on macOS Monterey, desktop now has support for `navigator.standalone`, which unfortunately breaks the detection I currently use to distinguish between desktop and mobile iOS devices. So I need to find a new workaround for that, as now macOS can be detected as an iPad, which isn't good. These tooling updates to Flatlands are from my recent updates to STE and Dovetail, which I remembered I hadn't brought over here yet.
- Loading branch information
1 parent
d936fa4
commit 1d83818
Showing
10 changed files
with
357 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,20 @@ | ||
{ | ||
"compilerOptions": { | ||
"allowJs": true, | ||
"checkJs": true, | ||
"module": "ESNext", | ||
"moduleResolution": "NodeNext", | ||
"isolatedModules": true, | ||
"module": "NodeNext", | ||
"target": "ESNext", | ||
"isolatedModules": true, | ||
"types": [ | ||
"new-javascript" | ||
"new-javascript", | ||
"vite/client" | ||
], | ||
"noEmit": true, | ||
"skipLibCheck": true, | ||
"strict": true, | ||
"noImplicitOverride": true, | ||
"noPropertyAccessFromIndexSignature": true, | ||
"noUncheckedIndexedAccess": true | ||
}, | ||
"exclude": [ | ||
"./dist" | ||
] | ||
"noUncheckedIndexedAccess": true, | ||
"allowUnreachableCode": false, | ||
"noUnusedLocals": true, | ||
"noUnusedParameters": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters