e4ab72e8a8b54a1b3cca6dabb7124a271065e38a
[cellular-automata.git] / life / 006 / tsconfig.json
1 { "compilerOptions":
2 { "allowUnreachableCode" : false
3 , "allowUnusedLabels" : false
4 , "forceConsistentCasingInFileNames" : true
5 , "module" : "commonjs"
6 , "noEmitOnError" : true
7 , "noFallthroughCasesInSwitch" : true
8 , "noImplicitReturns" : true
9 , "noImplicitUseStrict" : false
10 , "noUnusedLocals" : true
11 , "noUnusedParameters" : true
12 , "pretty" : true
13 , "removeComments" : false
14 , "sourceMap" : false
15 , "target" : "es5"
16 }
17 , "exclude":
18 [ "node_modules"
19 ]
20 , "files":
21 [ "./typings/index.d.ts"
22 , "life.ts"
23 ]
24 }
This page took 0.042239 seconds and 4 git commands to generate.