Skip to content

Commit 266eaa5

Browse files
committedNov 28, 2019
Fix relative node_modules ignore
1 parent 30adec7 commit 266eaa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ export function create (options: CreateOptions = {}): Register {
266266

267267
const isScoped = options.scope ? (relname: string) => relname.charAt(0) !== '.' : () => true
268268
const shouldIgnore = createIgnore(options.skipIgnore ? [] : (
269-
options.ignore || ['/node_modules/']
269+
options.ignore || ['(?:^|/)node_modules/']
270270
).map(str => new RegExp(str)))
271271

272272
const diagnosticHost: _ts.FormatDiagnosticsHost = {

0 commit comments

Comments
 (0)
Please sign in to comment.