mirror of
https://github.com/langgenius/dify.git
synced 2026-06-03 08:16:37 +08:00
cfc1cf2b8c
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
473 B
JSON
24 lines
473 B
JSON
{
|
|
"extends": "@dify/tsconfig/node.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@test/*": [
|
|
"./test/*"
|
|
]
|
|
},
|
|
"types": ["node"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"noEmit": false,
|
|
"outDir": "dist",
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"exclude": ["dist", "test", "node_modules", "**/*.test.ts"]
|
|
}
|