mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-26 12:52:48 +00:00
22 lines
481 B
JSON
22 lines
481 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@test/*": ["../../test/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.d.ts",
|
|
"../../packages/**/*.d.ts",
|
|
"../../test/list.test.ts",
|
|
"../../packages/service/core/workflow/dispatch/ai/agent/type.ts",
|
|
"../../packages/service/core/workflow/dispatch/type.ts"
|
|
],
|
|
"exclude": ["**/*.test.ts"]
|
|
}
|