美文网首页我爱编程
LayaAir引擎学习

LayaAir引擎学习

作者: 玛玛哈哈m | 来源:发表于2018-02-06 14:03 被阅读0次

    安装LayaAirIDE后(其实是绿色压缩包,安装程序都懒得做),新手第一次用引擎就遇到这么多问题,官方不会做傻瓜化,也没有在文档说明,这里很坑,相反白鹭引擎没有这种问题

    启动IDE可能会提示
    版本不匹配! 全局 tsc (2.7.1) != VS Code 的语言服务(2.1.5)。可能出现不一致的编译错误
    全局安装的tsc编译器与vs代码服务版本不匹配,这个时候打开菜单
    文件>首选项>用户设置>setting.json
    增加"typescript.tsdk": "node_modules/typescript/lib"
    typescript.tsdk的解释是:
    // 指定包含要使用的 tsserver 和 lib*.d.ts 文件的文件夹路径。

    "typescript.tsdk": null,
    调试可能会提示
    [debugger-for-chrome] Error processing "launch": Error: 找不到文件: null 请设置文件配置文件属性runtimeExecutable
    按照提示,打开launch.json文件,修改runtimeExecutable为自己电脑上chrome浏览器的地址
    "runtimeExecutable": "${execPath}",
    // "runtimeExecutable": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe",

    ts 学习备忘
    https://www.jianshu.com/p/dafb8abab3fe

    相关文章

      网友评论

        本文标题:LayaAir引擎学习

        本文链接:https://www.haomeiwen.com/subject/efcgzxtx.html