File tree
Expand file treeCollapse file tree1 file changed
+8
-0
lines changed Expand file treeCollapse file tree1 file changed
+8
-0
lines changed Original file line number | Diff line number | Diff line change |
---|
|
177 | 177 |
|
178 | 178 | (when (contains? opts :language-in)
|
179 | 179 | (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) |
180 | 184 | :ecmascript5 (.setLanguageIn compiler-options CompilerOptions$LanguageMode/ECMASCRIPT5)
|
181 | 185 | :ecmascript5-strict (.setLanguageIn compiler-options CompilerOptions$LanguageMode/ECMASCRIPT5_STRICT)
|
182 | 186 | :ecmascript3 (.setLanguageIn compiler-options CompilerOptions$LanguageMode/ECMASCRIPT3)))
|
183 | 187 |
|
184 | 188 | (when (contains? opts :language-out)
|
185 | 189 | (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) |
186 | 194 | :ecmascript5 (.setLanguageOut compiler-options CompilerOptions$LanguageMode/ECMASCRIPT5)
|
187 | 195 | :ecmascript5-strict (.setLanguageOut compiler-options CompilerOptions$LanguageMode/ECMASCRIPT5_STRICT)
|
188 | 196 | :ecmascript3 (.setLanguageOut compiler-options CompilerOptions$LanguageMode/ECMASCRIPT3)))
|
|
You can’t perform that action at this time.
0 commit comments