- 使用 Vue 3、TypeScript、Vite、Pinia 和 Vue Router 搭建项目基础结构 - 集成 Tailwind CSS 和 DaisyUI 作为 UI 框架 - 创建销售控制台主页面,包含客户列表、对话监控和客户画像面板 - 添加模拟数据以展示客户在不同销售阶段的流转状态 - 实现 AI/人工切换、消息发送、资料推送等核心交互功能
20 lines
414 B
JSON
20 lines
414 B
JSON
{
|
|
"extends": "@tsconfig/node24/tsconfig.json",
|
|
"include": [
|
|
"vite.config.*",
|
|
"vitest.config.*",
|
|
"cypress.config.*",
|
|
"nightwatch.conf.*",
|
|
"playwright.config.*",
|
|
"eslint.config.*"
|
|
],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
|
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"types": ["node"]
|
|
}
|
|
}
|