This repository was archived by the owner on Dec 1, 2019. It is now read-only.
File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,10 @@ Directory when cache is stored.
169
169
170
170
Invoke glob resolver using 'filesGlob' and 'exclude' sections of ` tsconfig ` .
171
171
172
+ ### skipDeclarationFilesCheck * (string) (default=fase)*
173
+
174
+ Skip declaration files typechecking. Use this only if you understand consequences.
175
+
172
176
## Compiler options
173
177
174
178
You can pass compiler options inside loader query string or in tsconfig file.
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ function processCompile(payload: ICompilePayload) {
236
236
let message = env . compiler . flattenDiagnosticMessageText ( diagnostic . messageText , '\n' ) ;
237
237
if ( diagnostic . file ) {
238
238
let { line, character } = diagnostic . file . getLineAndCharacterOfPosition ( diagnostic . start ) ;
239
- console . error ( `[${ instanceName } ] ${ colors . red ( diagnostic . file . fileName ) } :${ line + 1 } :${ character + 1 } ) \n ${ colors . red ( message ) } ` ) ;
239
+ console . error ( `[${ instanceName } ] ${ colors . red ( diagnostic . file . fileName ) } :${ line + 1 } :${ character + 1 } \n ${ colors . red ( message ) } ` ) ;
240
240
} else {
241
241
console . error ( colors . red ( `[${ instanceName } ] ${ message } ` ) ) ;
242
242
}
You can’t perform that action at this time.
0 commit comments