Files
xj-admin/iweb/tsconfig.json
T
weixin 0b9c9d497e update
1.im聊天可以添加其他用户(专业人员)
2.更新im打包文件
2025-11-11 16:43:21 +08:00

50 lines
906 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"noImplicitAny": false,
"noImplicitThis": false,
"strictNullChecks": false,
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env",
"mocha",
"chai"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/*.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/**/*.png",
"src/**/*.jpg",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules",
"!src/TUIKit/**/*"
]
}