上一个小程序我尝试着用ts模式来开发,越玩眼睛越亮,不得不说,ts模式来开发微信小程序还是不错的,友好的语法提示,避免出现一些没必要的bug,下面是我搭建项目的流程,希望能帮到各位像我这样的小白:
1. 创建小程序时语言选择TypeScript
2. 执行 npm init 一路 Enter 到底
3. 在 miniprogram 目录下创建 miniprogram_npm 文件夹
4. 根目录 package.json 修改"scripts" 如下:
"scripts": {
"compile": "./node_modules/typescript/bin/tsc",
"tsc": "node ./node_modules/typescript/lib/tsc.js"
}
5. 根目录 project.config.json 修改 "scripts" 如下:
"scripts": {
"beforeCompile": "npm run tsc",
"beforePreview": "npm run tsc",
"beforeUpload": "npm run tsc"
}
6. 项目详情(开发工具右上角)本地配置中,选中"使用npm模块"、"启用自定义处理命令"
7. 执行 npm install typescript --save-dev
8. 执行 npm install
9. 在工具中点击 "构建npm"
10. 点击编译