扣子智能体
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
547 B

{
"extends": "@coze-arch/ts-config/tsconfig.web.json",
"$schema": "https://json.schemastore.org/tsconfig",
"include": ["__tests__", "vitest.config.ts"],
"exclude": ["**/node_modules", "./dist"],
"references": [
{
"path": "./tsconfig.build.json"
}
],
"compilerOptions": {
"baseUrl": "./",
"paths": {},
"types": ["react", "react-dom"],
"jsx": "react",
"isolatedModules": true,
"preserveSymlinks": false,
"strictPropertyInitialization": false,
"rootDir": "./",
"outDir": "./dist"
}
}