mirror of
https://github.com/labring/FastGPT.git
synced 2026-05-09 01:02:24 +08:00
2dcb754f47
* fix: ts * fix review
34 lines
1.1 KiB
JSON
34 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2022",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["../src/*"],
|
|
"@fastgpt-sdk/storage": ["../../../sdk/storage/src/index.ts"],
|
|
"@fastgpt-sdk/otel": ["../../../sdk/otel/src/index.ts"],
|
|
"@fastgpt-sdk/otel/logger": ["../../../sdk/otel/src/logger-entry.ts"],
|
|
"@fastgpt-sdk/otel/metrics": ["../../../sdk/otel/src/metrics-entry.ts"],
|
|
"@fastgpt-sdk/otel/tracing": ["../../../sdk/otel/src/tracing-entry.ts"],
|
|
"@fastgpt/*": ["../../../packages/*"],
|
|
"@test/*": ["../../../test/*"],
|
|
|
|
"#fastgpt/app/test/*": ["./*"],
|
|
}
|
|
},
|
|
"include": ["**/*.test.ts", "../../../packages/service/**/*.d.ts"],
|
|
"exclude": ["**/node_modules"]
|
|
}
|