mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
25 lines
895 B
JavaScript
25 lines
895 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.io/license
|
||
|
|
*/
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
resolveExtensions: ['.mjs', '.js'],
|
||
|
|
// Note: `@bazel/esbuild` has a bug and does not pass-through the format from Starlark.
|
||
|
|
format: 'esm',
|
||
|
|
banner: {
|
||
|
|
// Workaround for: https://github.com/evanw/esbuild/issues/946
|
||
|
|
// We also define `__ESM_IMPORT_META_URL__` because we cannot use `import.meta.url`
|
||
|
|
// in our sources yet. The devmode CommonJS output will otherwise break.
|
||
|
|
// TODO: Remove this workaround in the future once devmode is ESM as well.
|
||
|
|
js: `
|
||
|
|
import {createRequire as __cjsCompatRequire} from 'module';
|
||
|
|
const require = __cjsCompatRequire(import.meta.url);
|
||
|
|
const __ESM_IMPORT_META_URL__ = import.meta.url;
|
||
|
|
`,
|
||
|
|
},
|
||
|
|
};
|