Я пытаюсь использовать накопительный пакет с babel, но в выходном файле я получил дубликаты определений:
var Projection =
/*#__PURE__*/
function () {
/**
* @param {Options} options Projection options.
*/
function Projection(options) {
_classCallCheck(this, Projection);
/**
* @private
* @type {string}
*/
this.code_ = options.code;
и
var Projection$1 = function Projection(options) {
/**
* @private
* @type {string}
*/
this.code_ = options.code;
/**
* Units of projected coordinates. When set to `TILE_PIXELS`, a
* `this.extent_` and `this.worldExtent_` must be configured properly for each
* tile.
* @private
* @type {module:ol/proj/Units}
*/
this.units_ = /** @type {module:ol/proj/Units} */ (options.units);
Моя конфигурация накопительного пакета
// Rollup configuration for the full build
const path = require('path');
import noderesolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import {uglify} from 'rollup-plugin-uglify';
import sourcemaps from 'rollup-plugin-sourcemaps';
import babel from 'rollup-plugin-babel';
import alias from 'rollup-plugin-alias';
import minify from 'rollup-plugin-babel-minify';
const prod = process.env.BUILD === 'production';
const cesiumSource = 'node_modules/cesium/Source';
//const cesiumSource = 'Source/Cesium';
const olSource = 'ol_build/openlayers/src/ol';
const plugins = [
noderesolve(),
commonjs(),
];
// const uglifyPlugin = uglify({
// compress: {
// sequences: false, // workaround uglify bug with sequences
// drop_console: true
// }
// });
const babelPlugin = babel({
babelrc: false,
presets: [["@babel/preset-env", { modules: false }]],
exclude: ['node_modules/**']
// externalHelpers: true,
// plugins: ["@babel/external-helpers"]
// runtimeHelpers: true,
// plugins: ["@babel/plugin-transform-runtime"]
});
const aliasPlugin = alias({
ol: path.resolve(__dirname, olSource),
Cesium: path.resolve(__dirname, cesiumSource)
});
if (prod) {
//plugins.push(uglifyPlugin);
//plugins.push(minify);
}
plugins.push(babelPlugin);
plugins.push(aliasPlugin);
plugins.push(sourcemaps());
export default {
input: './dist/index.js',
output: [
{file: prod ? './dist/ol.js' : './dist/ol-debug.js', format: 'iife', sourcemap: true}
],
plugins
//external: ['ol'],
};
*Конфигурация 1009 * и package.json, связанные с babel и накопительным пакетом:
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"rollup": "0.65.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-babel-minify": "^6.1.1",
"rollup-plugin-commonjs": "9.1.6",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-sourcemaps": "0.4.2",
"rollup-plugin-uglify": "5.0.2",
"dependencies": {
"rollup-plugin-alias": "^1.4.0"
}
Когда в выходном файле я использую только накопительный пакет без babel, существует только 1 определение «Проекция».
Класс оригинала:
class Projection {
/**
* @param {Options} options Projection options.
*/
constructor(options) {
/**
* @private
* @type {string}
*/
this.code_ = options.code;
/**
* Units of projected coordinates. When set to `TILE_PIXELS`, a
* `this.extent_` and `this.worldExtent_` must be configured properly for each
* tile.
* @private
* @type {import("./Units.js").default}
*/
this.units_ = /** @type {import("./Units.js").default} */ (options.units);
Я пытался использовать предыдущую версию babel для накопительного пакета, а также пытался использовать плагин "external-helpers", но все еще не работал.
Для меня накопительный пакет и babel являются новыми.
Из-за этих дублированных определений я получил false, когда сравнивал типы с оператором instanceof.Почему существуют повторяющиеся определения и как настроить babel, чтобы получить только одно определение?