angular/packages/zone.js/tools/base.mjs
Joey Perrott f0ee681ad7 build: move macros/build set up for zone.js into zone.js directories (#63421)
Move the zone_bundle and configurations into zone.js's tool directory

PR Close #63421
2025-08-27 11:23:57 -07:00

23 lines
505 B
JavaScript

/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
// Add 'use strict' to the bundle, https://github.com/angular/angular/pull/40456
const banner = `'use strict';
/**
* @license Angular
* (c) 2010-2025 Google LLC. https://angular.dev/
* License: MIT
*/`;
export default {
banner: {
js: banner,
},
legalComments: 'none',
plugins: [],
};