mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-01 12:10:07 -06:00
19 lines
386 B
JavaScript
19 lines
386 B
JavaScript
/**
|
|
* Folder names in "node_modules/@types" that we should include
|
|
* when we bundle Cypress NPM package. These folder have ".d.ts"
|
|
* definition files that we will need to include with our NPM package.
|
|
*/
|
|
const includeTypes = [
|
|
'bluebird',
|
|
'lodash',
|
|
'mocha',
|
|
'minimatch',
|
|
'sinon',
|
|
'sinon-chai',
|
|
'chai',
|
|
'chai-jquery',
|
|
'jquery',
|
|
]
|
|
|
|
module.exports = { includeTypes }
|