• 首页
  • 动态
  • 案例
  • 引擎社区
  • API
  • 文档
  • 示例
  • 引擎下载

大约有 13 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0031 秒)

1. Laya2.2.0如何变回ES5发布 [ 100%]

Laya2.2.0如何变回ES5发布 { "compilerOptions": { "module": "commonjs", "target": "es5", "noEmitHelpers": true, "sourceMap": false }, "exclude": [ "node_modules" ] }   设置成commonjs和ES5之后会报编译异常 Error: Incompatible tsconfig option. Module resolves to 'CommonJS'. This is in...

来源: Laya_社区 发布时间: 20191016

2. 加载模块报错 [ 97%]

...'typescript-collections');配置如下:{ "compilerOptions": { "module": "commonjs", "target": "es5", "sourceMap": true, "moduleResolution": "node", "lib": [ "dom", "es5" ] }, "exclude": [ // "node_modules" ] }报错 ReferenceError: exports is not defined 生成的js是Object.defineProperty(exports...

来源: Laya_社区 发布时间: 20180107

3. Laya2.0编译后所有js都自动合并到bundle.js中,导致bundle.js过大,加载速度很慢,bundle.js可以拆分吗 [ 84%]

...5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */     "module": "commonjs",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */     // "lib": [],                             /* Specify libr...

来源: Laya_社区 发布时间: 20190408

4. 引擎版本2.4.0打包微信小游戏报错,开发者工具正常,真机运行报错[附复现Demo] [ 78%]

... 赞同来自: Laya 2.0以后的高版本用了rollup编译ts,不支持commonjs了,低版本1.x的版本使用browserify,是可以设置modulecommonjs,并target打包为es5的,有办法能让新版本的也能编译成es5吗 2020-03-25 0 0 分享 微博 QZONE 微信 为什么被折叠? ...

来源: Laya_社区 发布时间: 20200325

5. Laya2.4.0如何引用使用npm安装的三方库? [ 77%]

..."compilerOptions": {     "module": "es6",  module是es6 ,改成commonjs可以引入了,但是编译又报错  那么如何正确引用到node_modules里面的三方库呢。 附件 : --> 2020-03-18 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请...

来源: Laya_社区 发布时间: 20200318

6. 官方能不能优化一下TS的编译速度 [ 70%]

...会出攻略。加QQ61496426详细聊。 { "compilerOptions": { "module": "commonjs", "target": "es5", "sourceMap": true, "skipLibCheck": true }, "exclude": [ "node_modules" ] }   2017-08-09 0 0 分享 微博 QZONE 微信 15068753667 赞同来自: 20kb代码量编译1秒,200kb的代码量编译2...

来源: Laya_社区 发布时间: 20170808

7. 将3D项目原本为2.1.1的引擎升级到2.4.0之后直接编译运行出现的报错问题如下图 [ 70%]

...2.1.1下运行正常的) {   "compilerOptions": {     "module": "commonjs",     "target": "es5",     "noEmitHelpers": false,     "sourceMap": false,     "lib": ["es5", "dom", "es2015.promise"]   },   "exclude": ["node_modules"] } 2020-02-24 0 0 分享 微博 QZON...

来源: Laya_社区 发布时间: 20200224

8. laya2.3微信开放域点发布后编译就会报错 [ 69%]

...译就会如下报错。 Incompatible tsconfig option. Module resolves to 'CommonJS'. This is incompatible with rollup, please use 'module: "ES2015"' or 'module: "ESNext"'. 附件 : --> PigGameOpenData.zip 2019-12-20 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已...

来源: Laya_社区 发布时间: 20191220

9. TS项目使用promise解决方案 [ 68%]

...   修改tsconfig.json文件如下   { "compilerOptions": { "module": "commonjs", "target": "es5", "noEmitHelpers": true, "importHelpers": true, "sourceMap": false, "lib":[ "es5", "dom", "es2015.promise" ] }, "exclude": [ "node_modules" ] } 其中lib用来支持promise,importHelpers用来支持 ...

来源: Laya_社区 发布时间: 20190520

10. tsconfig 中添加 "lib":["es5","es2015.promise"] ,之后无法引用lib.d.ts里面的内容,意味着console.log()都报错了 [ 67%]

...console.log,下面是配置文件: { "compilerOptions": { "module": "commonjs", "target": "es5", "noEmitHelpers": true, "sourceMap": false, "lib": [ "es5","es2015.promise", ], }, "exclude": [ "node_modules" ], } 2018-12-27 添加评论 悬赏 --> 分享 微博 QZONE 微信 没有找到相关结...

来源: Laya_社区 发布时间: 20181227