@tencentcloud/chat-uikit-vue2
Version:
TUIKit 是基于 IM SDK 实现的一套 UI 组件,其包含会话、聊天、群组、个人资料等功能,基于 TUIKit 组件您可以像搭积木一样快速搭建起自己的业务逻辑。
38 lines (37 loc) • 968 B
JSON
{
"compilerOptions": {
// Type Checking
"strict": true,
"exactOptionalPropertyTypes": true,
"noImplicitAny": false,
// Language and Environment
"target": "ESNext",
// Modules
"moduleResolution": "node",
// Completeness
"skipLibCheck": true,
// Interop Constraints
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
// Emit
"sourceMap": true,
// "strictFunctionTypes": false,
"isolatedModules": false,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@tencentcloud/chat-uikit-engine": ["../chat-uikit-engine/src"],
"@tencentcloud/tui-core": ["../tui-core/src"],
"@tencentcloud/universal-api": ["../../universal-api/src"],
"@tencentcloud/universal-component": ["../../universal-component/src"]
},
"lib": ["esnext", "dom"]
},
"include": [
"**/*.js",
"**/*.d.ts",
"**/*.ts",
"**/*.vue"
],
"exclude": ["node_modules"]
}