dify/cli/tsconfig.json
Yunlu Wen c0ee821d45
refactor: use absolute path for inter dir importing (#36822)
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-06-01 01:32:16 +00:00

22 lines
404 B
JSON

{
"extends": "@dify/tsconfig/node.json",
"compilerOptions": {
"moduleResolution": "bundler",
"paths": {
"@/*": [
"./src/*"
],
"@test/*": [
"./test/*"
]
},
"types": ["node"],
"declaration": true,
"declarationMap": true,
"noEmit": false,
"outDir": "dist",
"sourceMap": true
},
"include": ["src/**/*.ts", "test/**/*.ts"]
}