大约有 41 项符合查询结果, 库内数据总量为 30,778 项。 (搜索耗时: 0.0035 秒)
...烫 2019-10-09 0 0 分享 微博 QZONE 微信 xiaocai 赞同来自: { "compilerOptions": { /* Basic Options */ "target": "es2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */ ...
来源: Laya_社区 发布时间: 20190408
...Flash AS3程序员开发Html5大型游戏而生的引擎框架。通过LayaCompiler编译器,AS3成为继Haxe、TypeScript后,又一种JavaScript编写语言。 自2015年5月26日首次公开发布LayaFlash引擎框架以来,以支持Flash AS3语言在Flash Builder、FlashDevelop中直...
来源: Laya_社区 发布时间: 20151027
...语句“import”代码段间的任意位置加上此宏编译标记“/*[COMPILER OPTIONS:debug]*/”即可开启debug模式:456789101112 package { /*[COMPILER OPTIONS:debug]*/ import flash.display.Sprite; import flash.events.Event; public class Main extends Sprite { …… } …… } 开启...
来源: Laya_社区 发布时间: 20151218
...any key 这么麻烦 ```javascript { "taskName": "laya compile", "isBuildCommand": false, "isShellCommand": true, "showOutput": "always", "echoCommand": false, "command": "layacmd", "args": [ ...
来源: Laya_社区 发布时间: 20170317
...2017-06-14 15:57 @cuixueying:用第1个例子可以跑得通,但加了/*[COMPILER OPTIONS:normal]*/的话,导出的max.js好像把laya包所有代码都编译进去了,能不能控制只把项目引用到的laya包代码编译进去呢? 本来我新建项目不加COMPILER那句,导出的ma...
来源: Laya_社区 发布时间: 20170612
...ersion number -h, --help output usage information Commands: compile compile project. publish publish project. help [cmd] display help for [cmd] 并没有相关命令 2019-04-07 添加评论 免费帖 --> 分享 微博 QZONE 微信 没有找到相关...
来源: Laya_社区 发布时间: 20190407
...语法,首先要配置 tsconfig.json, 让其支持装饰器语法:{ "compilerOptions": { ...其他配置, "experimentalDecorators": true, //启用装饰器语法 }, } 但修改完配置编译的时候会报错:This syntax requires an imported helper but module 'tslib' cannot be found 开发群...
来源: Laya_社区 发布时间: 20201223
...存在的问题。 使用: (1)、开启debug模式方法: /*[COMPILER OPTIONS:debug]*/ 在游戏入口类的package内导包位置加上此编译宏; (2)、关闭debug模式方法: 删掉编译宏; 3、发布(release)模式 描述: 在release编译模式下,会...
来源: Laya_社区 发布时间: 20151203
...我是这样做的: 1.使用flashDevelop,在项目属性->编译选项(Compiler Options)->编译常量(Compiler Constats),写入 CONFIG::cn,false CONFIG::en,true 如图: 2.在代码中写入 CONFIG::cn{ [Embed(source="ui_cn.swf", mimeType="application/octet-stream")] private ...
来源: Laya_社区 发布时间: 20160323
...作步骤: 1.layaIDE2.3.0创建开放域项目 2.直接点发布按钮(compile.js中代码会发生改变。) 3.然后编译就会如下报错。 Incompatible tsconfig option. Module resolves to 'CommonJS'. This is incompatible with rollup, please use 'module: "ES2015"' or 'module: "ESNext"'. ...
来源: Laya_社区 发布时间: 20191220