mirror of
https://github.com/labring/FastGPT.git
synced 2026-03-30 01:01:15 +08:00
* cloud doc * doc refactor * doc move * seo * remove doc * yml * doc * fix: tsconfig * fix: tsconfig
20 lines
477 B
JSON
20 lines
477 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@test/*": ["../../test/*"],
|
|
"@t3-oss/env-core": ["../../packages/service/node_modules/@t3-oss/env-core/dist/index.d.ts"]
|
|
}
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"../../packages/**/*.ts",
|
|
"../../packages/**/*.tsx"
|
|
],
|
|
"exclude": ["**/*.test.ts", "**/*.test.tsx", ".next", "dist", "coverage"]
|
|
}
|