Files
vtsuru.live/tsconfig.json
2024-12-19 10:18:05 +08:00

34 lines
772 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"allowJs": false,
"sourceMap": false,
"baseUrl": ".",
"types": ["node"],
"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"]
}