mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 11:35:42 -06:00
added system module kind to harness
This commit is contained in:
parent
e8fcf8fa2a
commit
50496ccd97
@ -959,6 +959,8 @@ module Harness {
|
||||
options.module = ts.ModuleKind.AMD;
|
||||
} else if (setting.value.toLowerCase() === 'commonjs') {
|
||||
options.module = ts.ModuleKind.CommonJS;
|
||||
} else if (setting.value.toLowerCase() === 'system') {
|
||||
options.module = ts.ModuleKind.System;
|
||||
} else if (setting.value.toLowerCase() === 'unspecified') {
|
||||
options.module = ts.ModuleKind.None;
|
||||
} else {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user