dcloudio / uni-app

A cross-platform framework using Vue.js
https://uniapp.dcloud.io
Apache License 2.0
40.18k stars 3.64k forks source link

为什么manifest.json配置es6转es5,编译后不生效 #4080

Open Pasoul opened 1 year ago

Pasoul commented 1 year ago

问题描述 为什么在manifest.json配置es6为false,编译出来的project.config.json里面的es6一直为true

复现步骤 manifest.json配置:

"mp-weixin": {
    "setting": {
      "urlCheck": false,
      "minified": true,
      "bigPackageSizeSupport": true,
      "es6": false
    },
  }
image

编译出来的project.config.json

"setting": {
    "urlCheck": false,
    "es6": true,
    "postcss": false,
    "minified": true,
    "newFeature": true,
    "bigPackageSizeSupport": true
  },

预期结果 预期编译出来的es6也是false

实际结果

image

系统信息:

Pasoul commented 1 year ago

其他配置是生效的,单单es6不生效

zui4yi1 commented 1 year ago

是不是有另外一个文件影响了:project.private.config.json?若有删除即可。

Pasoul commented 1 year ago

没有这个文件

yxw007 commented 2 weeks ago

这个问题2年多了还没有解决啊? @fxy060608