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

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

71. 深入理解LayaAir引擎架构和实现原理(二)项目调试原理及完美开发调试方案 [ 51%]

...log(waring); } }, treeshake: false, //建议忽略 plugins: [ typescript({ tsconfig:workSpaceDir + "/tsconfig.json", check: true, //Set to false to avoid doing any diagnostic checks on the code tsconfigOverride:{compilerOptions:{removeComments: true}}, include:/.*.ts/, }), glsl({ // By default, ever...

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

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

...码会发生改变。) 3.然后编译就会如下报错。 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

73. laya.wxmini.js里面window对象的属性window是只读的,不能给他赋值。 [ 50%]

...信 陈育源 赞同来自: 这边找到问题了,我是es6改es5,在tsconfig里边改的,发布之后。projectconfig文件里边的es6还是true,改为false就行 2018-11-14 0 2 分享 微博 QZONE 微信 匿名用户 赞同来自: 同样的问题!!!!!2.0。在 lib 的wxmini.js ...

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

74. ide2.6.0beta编译报错:This syntax requires an imported helper but module 'tslib' cannot be found [ 50%]

...stion/45491 2020-04-09 0 0 分享 微博 QZONE 微信 李康 赞同来自: tsconfig需要改改,tslib对应自己ide安装路径改一下 {   "compilerOptions": {     "module": "es6",     "target": "es6",     "noEmitHelpers": false,     "sourceMap": true,     "removeComm...

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

75. ide 2.4 layaair2-cmd 编译报错 [ 48%]

...mpile'... rpt2: config error TS18003: No inputs were found in config file 'tsconfig.json'. Specified 'include' paths were '["**/*"]' and 'exclude' paths were '[]'. [14:22:35] 'compile' errored after 286 ms [14:22:35] Error: Unexpected token (Note that you need plugins to import files that are not Ja...

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

76. TS项目中怎么使用promise [ 48%]

...lilio 我去,醉了醉了用的着这么麻烦吗?????直接在tsconfig文件修改一下,像我这样,然后在用就行了,new Promise就不会报错了,我这是参考的egret的tsconfig文件,具体promise怎么用,自己百度Promise的用法就好了 2018-07-18 1 1 分...

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

77. 用npm的protobuf导出的ts代码。然后用import { } from "" 运行到这里没反应,不继续执行,也不报错。 [ 46%]

...了。 谁知道这是为什么? 是不是引擎不支持import语法? tsconfig.json里target设为es5、es6都一样没变化。   2017-11-15 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关结果 已邀请: 与内容相关的链接 提交 4 个回复 zengjoeng 赞同...

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

78. 请问2.0的版本开始,我用ts编写的相关内容,都要使用import和export吗? [ 45%]

... 赞同来自: 去用白鹭ide吧,完全不用写什么export import,tsconfig一次引入全部,什么手动引入顺序完全不用你担心,ide帮你处理完了,laya确实差太多,谦虚学习一下 2020-02-16 0 0 分享 微博 QZONE 微信 Victor 赞同来自: 所以你最终有升...

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

79. 升级到2.2.0Beta报错Uncaught TypeError: Class constructor Sprite cannot be invoked without 'new' [ 45%]

...ght TypeError: Class constructor Sprite cannot be invoked without 'new' 将tsconfig.json里的"target":"es6"改为"es5"会报错: Uncaught TypeError: Class constructor Sprite cannot be invoked without 'new'   会升级到2.2.0Beta主要是看升级日志里,这个版本修复里很多bug,比...

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

80. Laya ts版,使用jasmine进行单元测试 [ 43%]

...正则指定哪些文件需要作为单元测试文件运行。   更改tsconfig.json. 在exclude里增加一项 "__tests__",也就是刚刚的spec_dir文件夹,防止正常编译时把它们也编进bin文件夹里去。   4 要测试的文件 假设我有三个文件,一个是src/Functions...

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