From: Siraaj Khandkar Date: Wed, 3 Aug 2016 21:29:39 +0000 (-0400) Subject: Enable more compiler checks X-Git-Url: https://git.xandkar.net/?p=cellular-automata.git;a=commitdiff_plain;h=fcfe39c1eb9078e9062f52e397f671ef20e338f7 Enable more compiler checks --- diff --git a/life/006/tsconfig.json b/life/006/tsconfig.json index c1dbee8..e4ab72e 100644 --- a/life/006/tsconfig.json +++ b/life/006/tsconfig.json @@ -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"