Files
coze-studio/frontend/packages/arch/fetch-stream/tsconfig.misc.json
fanlv 890153324f feat: manually mirror opencoze's code from bytedance
Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
2025-07-20 17:36:12 +08:00

22 lines
534 B
JSON

{
"extends": "@coze-arch/ts-config/tsconfig.node.json",
"$schema": "https://json.schemastore.org/tsconfig",
"include": ["__tests__", "__tests__/**/*.json", "vitest.config.ts"],
"exclude": ["./dist"],
"references": [
{
"path": "./tsconfig.build.json"
}
],
"compilerOptions": {
"rootDir": "./",
"outDir": "./dist",
"types": ["vitest/globals"],
"moduleResolution": "Node10",
"module": "CommonJS",
"lib": ["ES2022", "DOM"],
"strictNullChecks": true,
"noImplicitAny": true
}
}