mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-06 18:36:55 +08:00
34 lines
797 B
JSON
34 lines
797 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useDefineForClassFields": true,
|
|
"allowJs": false,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"types": ["node", "vue-vine/types/macros"],
|
|
"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",
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|