Files
dify-plus/web/tsconfig.json
T
npc0-hue 062c8a5b22 fix: 升级依赖并修复相关问题
- 升级web依赖到最新版本
- 修复1.11.4版本兼容性问题
- 解决google字体dockerfile访问问题
- 恢复丢失的相关文件
- 添加多语言支持
- 调整docker版本及worker镜像配置
2026-01-28 09:40:42 +08:00

50 lines
842 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "es2022",
"jsx": "react-jsx",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"module": "esnext",
"moduleResolution": "bundler",
"paths": {
"@/*": [
"./*"
],
"~@/*": [
"./*"
]
},
"resolveJsonModule": true,
"types": [
"vitest/globals",
"node"
],
"allowJs": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true,
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}