File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 177177
178178 (when (contains? opts :language-in )
179179 (case (:language-in opts)
180+ :no-transpile (.setLanguageIn compiler-options CompilerOptions$LanguageMode/NO_TRANSPILE)
181+ :ecmascript6 (.setLanguageIn compiler-options CompilerOptions$LanguageMode/ECMASCRIPT6)
182+ :ecmascript6-strict (.setLanguageIn compiler-options CompilerOptions$LanguageMode/ECMASCRIPT6_STRICT)
183+ :ecmascript6-typed (.setLanguageIn compiler-options CompilerOptions$LanguageMode/ECMASCRIPT6_TYPED)
180184 :ecmascript5 (.setLanguageIn compiler-options CompilerOptions$LanguageMode/ECMASCRIPT5)
181185 :ecmascript5-strict (.setLanguageIn compiler-options CompilerOptions$LanguageMode/ECMASCRIPT5_STRICT)
182186 :ecmascript3 (.setLanguageIn compiler-options CompilerOptions$LanguageMode/ECMASCRIPT3)))
183187
184188 (when (contains? opts :language-out )
185189 (case (:language-out opts)
190+ :no-transpile (.setLanguageOut compiler-options CompilerOptions$LanguageMode/NO_TRANSPILE)
191+ :ecmascript6 (.setLanguageOut compiler-options CompilerOptions$LanguageMode/ECMASCRIPT6)
192+ :ecmascript6-strict (.setLanguageOut compiler-options CompilerOptions$LanguageMode/ECMASCRIPT6_STRICT)
193+ :ecmascript6-typed (.setLanguageOut compiler-options CompilerOptions$LanguageMode/ECMASCRIPT6_TYPED)
186194 :ecmascript5 (.setLanguageOut compiler-options CompilerOptions$LanguageMode/ECMASCRIPT5)
187195 :ecmascript5-strict (.setLanguageOut compiler-options CompilerOptions$LanguageMode/ECMASCRIPT5_STRICT)
188196 :ecmascript3 (.setLanguageOut compiler-options CompilerOptions$LanguageMode/ECMASCRIPT3)))
You can’t perform that action at this time.
0 commit comments