mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-12 18:19:45 -06:00
Co-authored-by: Jessica Sachs <jess@jessicasachs.io> Co-authored-by: Rocky <25568640+rockindahizzy@users.noreply.github.com>
15 lines
358 B
JavaScript
15 lines
358 B
JavaScript
import { createEntries } from '@cypress/mount-utils/create-rollup-entry.mjs'
|
|
|
|
const config = {
|
|
external: [
|
|
'@angular/core',
|
|
'@angular/core/testing',
|
|
'@angular/common',
|
|
'@angular/platform-browser-dynamic/testing',
|
|
'zone.js',
|
|
'zone.js/testing',
|
|
],
|
|
}
|
|
|
|
export default createEntries({ formats: ['es'], input: 'src/index.ts', config })
|