mirror of
https://github.com/langgenius/dify.git
synced 2026-06-03 08:16:37 +08:00
refactor: improve network error and allow verbose output (#36923)
This commit is contained in:
+3
-6
@@ -1,7 +1,6 @@
|
||||
{
|
||||
"extends": "@dify/tsconfig/node.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "src",
|
||||
"moduleResolution": "bundler",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
@@ -12,12 +11,10 @@
|
||||
]
|
||||
},
|
||||
"types": ["node"],
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"noEmit": false,
|
||||
"noEmit": true, // we already have bundlers to handle this.
|
||||
"outDir": "dist",
|
||||
"sourceMap": true
|
||||
},
|
||||
"include": ["src/**/*.ts"],
|
||||
"exclude": ["dist", "test", "node_modules", "**/*.test.ts"]
|
||||
"include": ["src/**/*.ts", "test/**/*.ts"], // tests must be included for typechecking
|
||||
"exclude": ["node_modules", "dist"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user