Skip to content

Commit 441d180

Browse files
committed
Testing TypeScript
About to start experimenting with a little rewrite, in TypeScript! First I'm just going to try and get the Service Worker set up, as that has been one of the harder things to get going when working on STE previously. Having types for the Service Worker will really help out so much! I'm really glad that Promises and using Async-Await makes more sense to me now also, as that was my biggest challenge for understanding the Service Worker lifecycle previously.
1 parent cb5a710 commit 441d180

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed
File renamed without changes.

tsconfig.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"compilerOptions": {
3+
"allowJs": true,
4+
"checkJs": true,
5+
"module": "ESNext",
6+
"target": "ESNext",
7+
"noEmit": true,
8+
"strict": true
9+
}
10+
}

0 commit comments

Comments
 (0)