Enable more compiler checks
[cellular-automata.git] / life / 006 / tsconfig.json
index c1dbee8..e4ab72e 100644 (file)
@@ -1,8 +1,18 @@
 { "compilerOptions":
-    { "module"                     : "commonjs"
-    , "target"                     : "es5"
-    , "sourceMap"                  : false
-    , "noFallthroughCasesInSwitch" : true
+    { "allowUnreachableCode"             : false
+    , "allowUnusedLabels"                : false
+    , "forceConsistentCasingInFileNames" : true
+    , "module"                           : "commonjs"
+    , "noEmitOnError"                    : true
+    , "noFallthroughCasesInSwitch"       : true
+    , "noImplicitReturns"                : true
+    , "noImplicitUseStrict"              : false
+    , "noUnusedLocals"                   : true
+    , "noUnusedParameters"               : true
+    , "pretty"                           : true
+    , "removeComments"                   : false
+    , "sourceMap"                        : false
+    , "target"                           : "es5"
     }
 , "exclude":
     [ "node_modules"
This page took 0.01735 seconds and 4 git commands to generate.