refactor: remove old compiler options (#14891)

DEPRECATION:
- `CompilerOptions.debug` has no effect any more, as the compiler
  always produces the same code independent of debug mode.
This commit is contained in:
Tobias Bosch
2017-03-07 11:16:27 -08:00
committed by Chuck Jazdzewski
parent 07122f0ad9
commit 1cff1250ba
10 changed files with 12 additions and 41 deletions

View File

@ -93,6 +93,9 @@ export class Compiler {
* @experimental
*/
export type CompilerOptions = {
/**
* @deprecated since v4 this option has no effect anymore.
*/
useDebug?: boolean,
useJit?: boolean,
defaultEncapsulation?: ViewEncapsulation,