mirror of
https://github.com/Megghy/vtsuru.live.git
synced 2025-12-06 10:26:56 +08:00
45 lines
1.2 KiB
JSON
45 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable", "ScriptHost"],
|
|
"useDefineForClassFields": true,
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": ["node", "vue-vine/macros", "jszip"],
|
|
"allowJs": false,
|
|
"strict": false,
|
|
"alwaysStrict": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": false,
|
|
"strictBindCallApply": false,
|
|
"strictFunctionTypes": false,
|
|
"strictNullChecks": false,
|
|
"strictPropertyInitialization": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true
|
|
},
|
|
"references": [{ "path": "./tsconfig.node.json" }],
|
|
"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"]
|
|
}
|