Skip to content

Commit

Permalink
Rename seperateCompilation to isolatedModules
Browse files Browse the repository at this point in the history
  • Loading branch information
ivogabe committed May 21, 2015
1 parent a61ec50 commit 6148114
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,8 @@ module compile {

const project = new Project(tsConfigFileName, tsConfigContent, getCompilerOptions(settings), settings.noExternalResolve ? true : false, settings.sortOutput ? true : false, settings.typescript);

// Seperate compilation is only supported when using TS1.5+
if (project.options['seperateCompilation'] && !tsApi.isTS14(project.typescript)) {
// Isolated modules are only supported when using TS1.5+
if (project.options['isolatedModules'] && !tsApi.isTS14(project.typescript)) {
project.options.sourceMap = false;
project.options.declaration = false;
project.options['inlineSourceMap'] = true;
Expand Down

0 comments on commit 6148114

Please sign in to comment.