/** @type {import('lage').ConfigOptions} */ module.exports = { pipeline: { typecheck: { type: 'npmScript', }, test: { type: 'npmScript', options: { outputGlob: [ 'coverage/**', '**/test-results/**', '**/playwright-report/**', ], }, }, build: { type: 'npmScript', cache: true, options: { outputGlob: ['lib-dist/**', 'dist/**', 'build/**'], }, }, }, cacheOptions: { cacheStorageConfig: { provider: 'local', outputGlob: ['lib-dist/**', 'dist/**', 'build/**'], }, }, npmClient: 'yarn', concurrency: 2, };