first commit

This commit is contained in:
2026-09-08 20:28:54 +08:00
commit 2ada8d3d5a
37380 changed files with 4886169 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
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 }
}