mirror of
https://github.com/langgenius/dify.git
synced 2026-06-03 08:16:37 +08:00
21 lines
476 B
JSON
21 lines
476 B
JSON
{
|
|
"extends": "@dify/tsconfig/node.json",
|
|
"compilerOptions": {
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@test/*": [
|
|
"./test/*"
|
|
]
|
|
},
|
|
"types": ["node"],
|
|
"noEmit": true, // we already have bundlers to handle this.
|
|
"outDir": "dist",
|
|
"sourceMap": true
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts"], // tests must be included for typechecking
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|