- Login page with quick user selection - Real-time chat with WebSocket (STOMP) - Conversation/friend/group list sidebar - API test console with operation logs - Integration with local dev environment
20 行
445 B
JSON
20 行
445 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"skipLibCheck": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": { "@/*": ["src/*"] }
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"]
|
|
}
|