mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	tsconfig: Remove redundant options.
`--jsx preserve` and `--removeComments false` are already the default. `--strict` already implies `--noImplicitAny`, `--noImplicitThis`, `--alwaysStrict`. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
		
				
					committed by
					
						
						Tim Abbott
					
				
			
			
				
	
			
			
			
						parent
						
							70f72a3ae8
						
					
				
				
					commit
					7a0a186e5f
				
			@@ -10,16 +10,11 @@
 | 
				
			|||||||
        "noEmit": true,
 | 
					        "noEmit": true,
 | 
				
			||||||
        "target": "es5",
 | 
					        "target": "es5",
 | 
				
			||||||
        "module": "es6",
 | 
					        "module": "es6",
 | 
				
			||||||
        "jsx": "preserve",
 | 
					 | 
				
			||||||
        "sourceMap": true,
 | 
					        "sourceMap": true,
 | 
				
			||||||
        "removeComments": false,
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        /* Strict type-checking */
 | 
					        /* Strict type-checking */
 | 
				
			||||||
        "strict": true,
 | 
					        "strict": true,
 | 
				
			||||||
        "noImplicitAny": true,
 | 
					 | 
				
			||||||
        "strictNullChecks": false,
 | 
					        "strictNullChecks": false,
 | 
				
			||||||
        "noImplicitThis": true,
 | 
					 | 
				
			||||||
        "alwaysStrict": true,
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
        /* Additional checks */
 | 
					        /* Additional checks */
 | 
				
			||||||
        "noUnusedLocals": true,
 | 
					        "noUnusedLocals": true,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user