扣子智能体
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.

34 lines
721 B

{
"extends": "@coze-arch/ts-config/tsconfig.web.json",
"$schema": "https://json.schemastore.org/tsconfig",
"include": [
"__tests__",
"stories",
"vitest.config.ts",
"tailwind.config.ts",
"src/**/*.test.ts",
"scripts/**/*.ts"
],
"exclude": ["dist"],
"references": [
{
"path": "./tsconfig.build.json"
}
],
"compilerOptions": {
"jsx": "preserve",
"strictNullChecks": true,
"rootDir": "./",
"outDir": "./dist",
"types": ["vitest/globals"],
"noImplicitReturns": false,
"useUnknownInCatchVariables": false,
"strictPropertyInitialization": false,
"module": "ESNext",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}