Files
med-notes/.pnpm-store/v10/files/ef/d85e02b0c7dc38519011cfc258704287e12a4e912ff5a24988873db2f79a9c060b2cd82e4e5df4fced1fed4849cc3ecc3b0525f9f4dd07dffecd8d2cd71ad4
2025-06-26 03:35:15 +00:00

13 lines
614 B
Plaintext

'use strict'
exports.directories = function () {
return [
'.git', // Git repository files, see <https://git-scm.com/>
'.nyc_output', // Temporary directory where nyc stores coverage data, see <https://github.com/bcoe/nyc>
'.sass-cache', // Cache folder for node-sass, see <https://github.com/sass/node-sass>
'bower_components', // Where Bower packages are installed, see <http://bower.io/>
'coverage', // Standard output directory for code coverage reports, see <https://github.com/gotwarlost/istanbul>
'node_modules' // Where Node modules are installed, see <https://nodejs.org/>
]
}