开发者工具版本:2017.08.30
我们使用Typescript开发微信小程序,在上一个版本中,是可以通过加断点直接调试ts源程序代码,最新版本中,看不到了,只能调试编译后的JS代码,这样很不方便调试,希望微信团队可以帮忙解决问题。
使用工具中碰到有下面这种现象
在app.json 中 修改 pages 页面路径时,如果页面存在某目录下,而此时若是写错保存会把目录下的
某页面移动到根目录下,然后目录也不能拖拽,只能打开文件再搬到之前目录下
把解决方案说一下:
主要是配置project.config.json文件
{
“description”: “项目配置文件”,
“client”: “dist/”,
“setting”: {
“urlCheck”: true,
“es6”: false,
“postcss”: true,
“minified”: true,
“newFeature”: true
},
“compileType”: “miniprogram”,
“libVersion”: “1.6.6”,
“appid”: “你自己的appid”,
“projectname”: “test%20source%20map”,
“condition”: {
“search”: {
“current”: -1,
“list”: []
},
“conversation”: {
“current”: -1,
“list”: []
},
“miniprogram”: {
“current”: -1,
“list”: []
}
}
}