智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/ec/ecff9f072f5655080188b105e3b...

14 lines
506 B

const path = require('path')
// 用户home目录
const home = require('os').homedir()
const clientRecordPath = path.join(home, 'hap-toolkit-client-records.json')
module.exports = {
projectPath: process.cwd(),
clientRecordPath,
sourceRoot: './src', // 源码根目录
signRoot: './sign', // 证书签名路径
releasePath: './dist', // 快应用包目录
outputPath: './build', // 输出目录,
dataCoverage: './.nyc_output', // 项目运行的代码覆盖率数据
server: { port: 8000 }
}