Files
vtsuru.live/tsconfig.json
Megghy 83a6c36d57 feat: enhance DefaultIndexTemplate with ordered links and UI improvements
- Added computed property to order links based on user settings or default order.
- Updated UI to display ordered links dynamically.
- Improved text display for UID and adjusted button styles for better UX.
- Modified TypeScript configuration to include 'jszip' type definitions.
2025-09-26 23:10:09 +08:00

34 lines
836 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"moduleResolution": "bundler",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"allowJs": false,
"sourceMap": true,
"baseUrl": ".",
"types": ["node", "vue-vine/macros", "jszip"],
"paths": {
"@/*": ["src/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx",
"env.d.ts",
"default.d.ts",
"src/data/chat/ChatClientDirectOpenLive.js",
"src/data/chat/models.js", "src/store/useDanmakuClient.ts",
],
"exclude": ["node_modules"]
}