CompilerFactory

A factory for creating a Compiler

      
      abstract class CompilerFactory {
  abstract createCompiler(options?: CompilerOptions[]): Compiler
}
    

方法

abstract createCompiler(options?: CompilerOptions[]): Compiler
      
      abstract createCompiler(options?: CompilerOptions[]): Compiler
    
参数
options CompilerOptions[]

可选. 默认值是 undefined.

返回值

Compiler