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.
14 lines
506 B
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 }
|
|
}
|
|
|