mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 06:27:23 -04:00
7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
|
/* @flow */
|
||
|
"use strict"
|
||
|
|
||
|
const alwaysIgnoredGlobs/*: Array<string>*/ = [ "**/node_modules/**", "**/bower_components/**" ]
|
||
|
|
||
|
module.exports = alwaysIgnoredGlobs
|