From c685f2dfb8aaf68d4c528b5c1d134a211631ee7a Mon Sep 17 00:00:00 2001
From: exyi <exyi@outlook.cz>
Date: Sat, 26 Sep 2020 16:22:08 +0000
Subject: [PATCH] TypeScript: use strict mode

---
 frontend/tsconfig.json | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
index 66aea81..b1f716e 100644
--- a/frontend/tsconfig.json
+++ b/frontend/tsconfig.json
@@ -1,6 +1,10 @@
 {
   "extends": "@tsconfig/svelte/tsconfig.json",
+  "compilerOptions": {
+    // "target": "ES2019"
+    "strict": true
+  },
 
   "include": ["src/**/*"],
   "exclude": ["node_modules/*", "__sapper__/*", "public/*"],
-}
\ No newline at end of file
+}