coze-studio/frontend/packages/workflow/test-run-next/form/tsconfig.misc.json

24 lines
574 B
JSON

{
"extends": "@coze-arch/ts-config/tsconfig.web.json",
"$schema": "https://json.schemastore.org/tsconfig",
"include": ["__tests__", "vitest.config.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": "."
}
}