mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 01:27:31 -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
|