10044b474f
- 添加HTTP客户端工具支持GET/POST请求 - 添加SMTP邮件发送功能 - 添加数据库操作(db.getRecords, db.deleteRecord, db.deleteRecords) - 添加订单管理云端函数(读取、接收、筛选、成功、失败) - 添加测试推送和邮件通知云端函数 - 修复云端函数编辑页面预览代码换行显示 - 云端变量数据模型重构(合并数据类型)
36 lines
871 B
JSON
36 lines
871 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2020",
|
|
"jsx": "preserve",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"moduleDetection": "force",
|
|
"useDefineForClassFields": true,
|
|
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "Bundler",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"types": [
|
|
"vite-plugin-vue-layouts/client"
|
|
],
|
|
"allowImportingTsExtensions": true,
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
|
|
"exclude": ["src/components/ui"]
|
|
}
|