Skip to content

Commit

Permalink
Improve TypeScript performance (#3963)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexKamaev authored and AndreyBelym committed Jul 2, 2019
1 parent 9428455 commit c869545
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/configuration/default-values.js
Expand Up @@ -24,7 +24,8 @@ export const DEFAULT_TYPESCRIPT_COMPILER_OPTIONS = {
noImplicitAny: false,
module: 1 /* ts.ModuleKind.CommonJS */,
target: 2 /* ES6 */,
suppressOutputPathCheck: true
suppressOutputPathCheck: true,
skipLibCheck: true
};

export const TYPESCRIPT_COMPILER_NON_OVERRIDABLE_OPTIONS = ['module', 'target'];

0 comments on commit c869545

Please sign in to comment.