feat: manually mirror opencoze's code from bytedance
Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
31
frontend/packages/studio/plugin-shared/.storybook/main.js
Normal file
31
frontend/packages/studio/plugin-shared/.storybook/main.js
Normal file
@@ -0,0 +1,31 @@
|
||||
import { mergeConfig } from 'vite';
|
||||
import svgr from 'vite-plugin-svgr';
|
||||
|
||||
/** @type { import('@storybook/react-vite').StorybookConfig } */
|
||||
const config = {
|
||||
stories: ['../stories/**/*.mdx', '../stories/**/*.stories.tsx'],
|
||||
addons: [
|
||||
'@storybook/addon-links',
|
||||
'@storybook/addon-essentials',
|
||||
'@storybook/addon-onboarding',
|
||||
'@storybook/addon-interactions',
|
||||
],
|
||||
framework: {
|
||||
name: '@storybook/react-vite',
|
||||
options: {},
|
||||
},
|
||||
docs: {
|
||||
autodocs: 'tag',
|
||||
},
|
||||
viteFinal: config =>
|
||||
mergeConfig(config, {
|
||||
plugins: [
|
||||
svgr({
|
||||
svgrOptions: {
|
||||
native: false,
|
||||
},
|
||||
}),
|
||||
],
|
||||
}),
|
||||
};
|
||||
export default config;
|
||||
14
frontend/packages/studio/plugin-shared/.storybook/preview.js
Normal file
14
frontend/packages/studio/plugin-shared/.storybook/preview.js
Normal file
@@ -0,0 +1,14 @@
|
||||
/** @type { import('@storybook/react').Preview } */
|
||||
const preview = {
|
||||
parameters: {
|
||||
actions: { argTypesRegex: "^on[A-Z].*" },
|
||||
controls: {
|
||||
matchers: {
|
||||
color: /(background|color)$/i,
|
||||
date: /Date$/i,
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default preview;
|
||||
5
frontend/packages/studio/plugin-shared/.stylelintrc.js
Normal file
5
frontend/packages/studio/plugin-shared/.stylelintrc.js
Normal file
@@ -0,0 +1,5 @@
|
||||
const { defineConfig } = require('@coze-arch/stylelint-config');
|
||||
|
||||
module.exports = defineConfig({
|
||||
extends: [],
|
||||
});
|
||||
16
frontend/packages/studio/plugin-shared/README.md
Normal file
16
frontend/packages/studio/plugin-shared/README.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# @coze-studio/plugin-shared
|
||||
|
||||
> Project template for react component with storybook.
|
||||
|
||||
## Features
|
||||
|
||||
- [x] eslint & ts
|
||||
- [x] esm bundle
|
||||
- [x] umd bundle
|
||||
- [x] storybook
|
||||
|
||||
## Commands
|
||||
|
||||
- init: `rush update`
|
||||
- dev: `npm run dev`
|
||||
- build: `npm run build`
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"operationSettings": [
|
||||
{
|
||||
"operationName": "test:cov",
|
||||
"outputFolderNames": ["coverage"]
|
||||
},
|
||||
{
|
||||
"operationName": "ts-check",
|
||||
"outputFolderNames": ["dist"]
|
||||
}
|
||||
]
|
||||
}
|
||||
7
frontend/packages/studio/plugin-shared/eslint.config.js
Normal file
7
frontend/packages/studio/plugin-shared/eslint.config.js
Normal file
@@ -0,0 +1,7 @@
|
||||
const { defineConfig } = require('@coze-arch/eslint-config');
|
||||
|
||||
module.exports = defineConfig({
|
||||
packageRoot: __dirname,
|
||||
preset: 'web',
|
||||
rules: {},
|
||||
});
|
||||
44
frontend/packages/studio/plugin-shared/package.json
Normal file
44
frontend/packages/studio/plugin-shared/package.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"name": "@coze-studio/plugin-shared",
|
||||
"version": "0.0.1",
|
||||
"description": "plugin shared",
|
||||
"license": "Apache-2.0",
|
||||
"author": "gaoyuanhan.duty@bytedance.com",
|
||||
"maintainers": [],
|
||||
"main": "src/index.ts",
|
||||
"scripts": {
|
||||
"build": "exit 0",
|
||||
"lint": "eslint ./ --cache",
|
||||
"test": "vitest --run --passWithNoTests",
|
||||
"test:cov": "npm run test -- --coverage"
|
||||
},
|
||||
"dependencies": {
|
||||
"@coze-arch/bot-api": "workspace:*",
|
||||
"@coze-arch/bot-semi": "workspace:*",
|
||||
"@coze-arch/i18n": "workspace:*",
|
||||
"classnames": "^2.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@coze-arch/bot-typings": "workspace:*",
|
||||
"@coze-arch/eslint-config": "workspace:*",
|
||||
"@coze-arch/stylelint-config": "workspace:*",
|
||||
"@coze-arch/ts-config": "workspace:*",
|
||||
"@coze-arch/vitest-config": "workspace:*",
|
||||
"@testing-library/jest-dom": "^6.1.5",
|
||||
"@testing-library/react": "^14.1.2",
|
||||
"@testing-library/react-hooks": "^8.0.1",
|
||||
"@types/react": "18.2.37",
|
||||
"@types/react-dom": "18.2.15",
|
||||
"@vitest/coverage-v8": "~3.0.5",
|
||||
"react": "~18.2.0",
|
||||
"react-dom": "~18.2.0",
|
||||
"stylelint": "^15.11.0",
|
||||
"vite-plugin-svgr": "~3.3.0",
|
||||
"vitest": "~3.0.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": ">=18.2.0",
|
||||
"react-dom": ">=18.2.0"
|
||||
}
|
||||
}
|
||||
|
||||
304
frontend/packages/studio/plugin-shared/src/constants/index.ts
Normal file
304
frontend/packages/studio/plugin-shared/src/constants/index.ts
Normal file
@@ -0,0 +1,304 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { I18n } from '@coze-arch/i18n';
|
||||
import { type TagColor } from '@coze-arch/bot-semi/Tag';
|
||||
import {
|
||||
CreationMethod,
|
||||
PluginType as PluginTypeFromApi,
|
||||
GrantType,
|
||||
APIDebugStatus,
|
||||
OnlineStatus,
|
||||
} from '@coze-arch/bot-api/plugin_develop';
|
||||
|
||||
import { type ExtInfoText } from '../types';
|
||||
|
||||
export enum PluginType {
|
||||
Form = 1,
|
||||
Code = 2,
|
||||
}
|
||||
|
||||
export const pluginTypeOption = [
|
||||
{ label: I18n.t('form_mode'), value: 1 },
|
||||
{ label: I18n.t('code_mode'), value: 2 },
|
||||
];
|
||||
|
||||
export const locationOption = [
|
||||
{ label: I18n.t('create_plugin_modal_header'), value: 1 },
|
||||
{ label: I18n.t('create_plugin_modal_query'), value: 2 },
|
||||
];
|
||||
|
||||
export interface OauthTccOpt {
|
||||
key: string;
|
||||
label?: string;
|
||||
max_len?: number;
|
||||
required?: boolean;
|
||||
type?: string;
|
||||
default?: string;
|
||||
placeholder?: string;
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
ruleList?: Array<any>;
|
||||
}
|
||||
|
||||
export const extInfoText: Record<string, ExtInfoText[]> = {
|
||||
header_list: [
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('create_plugin_modal_header_list'),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_header_list1'),
|
||||
},
|
||||
],
|
||||
auth: [
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('create_plugin_modal_info_all'),
|
||||
},
|
||||
{
|
||||
type: 'br',
|
||||
},
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('create_plugin_modal_info_None1'),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_info_None2'),
|
||||
},
|
||||
{
|
||||
type: 'br',
|
||||
},
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('create_plugin_modal_info_Service1'),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_info_Service2'),
|
||||
},
|
||||
{
|
||||
type: 'br',
|
||||
},
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('create_plugin_modal_info_Oauth1'),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_info_Oauth2'),
|
||||
},
|
||||
],
|
||||
location: [
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('plugin_location_info_all'),
|
||||
},
|
||||
{
|
||||
type: 'br',
|
||||
},
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('plugin_location_info_query'),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('plugin_location_info_query1'),
|
||||
},
|
||||
{
|
||||
type: 'demo',
|
||||
text: I18n.t('plugin_location_info_query2'),
|
||||
},
|
||||
{
|
||||
type: 'br',
|
||||
},
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('plugin_location_header'),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('plugin_location_header1'),
|
||||
},
|
||||
{
|
||||
type: 'demo',
|
||||
text: I18n.t('plugin_location_header2'),
|
||||
},
|
||||
],
|
||||
service_token: [
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('create_plugin_modal_Servicetoken_info1'),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_Servicetoken_info2'),
|
||||
},
|
||||
],
|
||||
key: [
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('create_plugin_modal_Parameter_info1'),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_Parameter_info2'),
|
||||
},
|
||||
],
|
||||
client_id: [
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_client_id4'),
|
||||
},
|
||||
{
|
||||
type: 'demo',
|
||||
text: I18n.t('create_plugin_modal_client_id5'),
|
||||
},
|
||||
],
|
||||
client_secret: [
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_client_secret4'),
|
||||
},
|
||||
],
|
||||
client_url: [
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_client_url_info1'),
|
||||
},
|
||||
{
|
||||
type: 'demo',
|
||||
text: I18n.t('create_plugin_modal_client_url_info2'),
|
||||
},
|
||||
],
|
||||
scope: [
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_scope_info1'),
|
||||
},
|
||||
{
|
||||
type: 'demo',
|
||||
text: I18n.t('create_plugin_modal_scope_info2'),
|
||||
},
|
||||
],
|
||||
authorization_url: [
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_authorization_url_info1'),
|
||||
},
|
||||
{
|
||||
type: 'demo',
|
||||
text: I18n.t('create_plugin_modal_authorization_url_info2'),
|
||||
},
|
||||
],
|
||||
authorization_content_type: [
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('create_plugin_modal_authorization_content_type_info1'),
|
||||
},
|
||||
{
|
||||
type: 'demo',
|
||||
text: I18n.t('create_plugin_modal_authorization_content_type_info2'),
|
||||
},
|
||||
],
|
||||
creation_method: [
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t(
|
||||
'plugin_creation_method_hover_tip_using_existing_services_title',
|
||||
),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t(
|
||||
'plugin_creation_method_hover_tip_using_existing_services_desc',
|
||||
),
|
||||
},
|
||||
],
|
||||
private_link_id: [
|
||||
{
|
||||
type: 'title',
|
||||
text: I18n.t('vpc_plugin_create_plugin_1'),
|
||||
},
|
||||
{
|
||||
type: 'text',
|
||||
text: I18n.t('vpc_plugin_tooltips'),
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export const authOptionsPlaceholder = {
|
||||
client_id: I18n.t('create_plugin_modal_client_id2'),
|
||||
client_secret: I18n.t('create_plugin_modal_client_secret2'),
|
||||
client_url: I18n.t('create_plugin_modal_client_url_empty'),
|
||||
scope: I18n.t('create_plugin_modal_scope_empty'),
|
||||
authorization_url: I18n.t('create_plugin_modal_authorization_url_empty'),
|
||||
authorization_content_type: I18n.t(
|
||||
'create_plugin_modal_authorization_content_type_empty',
|
||||
),
|
||||
service_token: I18n.t('create_plugin_modal_Servicetoken_empty'),
|
||||
key: I18n.t('create_plugin_modal_Parameter_empty'),
|
||||
};
|
||||
|
||||
export const CLOUD_PLUGIN_COZE = `${PluginTypeFromApi.PLUGIN}-${CreationMethod.COZE}`;
|
||||
export const CLOUD_PLUGIN_IDE = `${PluginTypeFromApi.PLUGIN}-${CreationMethod.IDE}`;
|
||||
export const LOCAL_PLUGIN_COZE = `${PluginTypeFromApi.LOCAL}-${CreationMethod.COZE}`;
|
||||
|
||||
export const doGetCreationMethodTips = () => extInfoText.creation_method;
|
||||
|
||||
export const grantTypeOptions = [
|
||||
{
|
||||
label: 'TokenExchange',
|
||||
value: GrantType.TokenExchange,
|
||||
},
|
||||
{
|
||||
label: 'ClientCredential',
|
||||
value: GrantType.ClientCredential,
|
||||
},
|
||||
];
|
||||
export const PLUGIN_API_TYPE_MAP = new Map<
|
||||
APIDebugStatus,
|
||||
{ label: string; color: TagColor }
|
||||
>([
|
||||
[
|
||||
APIDebugStatus.DebugWaiting,
|
||||
{ label: I18n.t('plugin_api_type_fail'), color: 'red' },
|
||||
],
|
||||
[
|
||||
APIDebugStatus.DebugPassed,
|
||||
{ label: I18n.t('plugin_api_type_pass'), color: 'green' },
|
||||
],
|
||||
]);
|
||||
export const PLUGIN_SERVICE_MAP = new Map<
|
||||
OnlineStatus,
|
||||
{ label: string; color: string }
|
||||
>([
|
||||
[
|
||||
OnlineStatus.ONLINE,
|
||||
{
|
||||
label: I18n.t('plugin_service_status_online'),
|
||||
color: 'var(--plugin-unpublished-color)',
|
||||
},
|
||||
],
|
||||
[
|
||||
OnlineStatus.OFFLINE,
|
||||
{
|
||||
label: I18n.t('plugin_service_status_offline'),
|
||||
color: 'var(--plugin-published-color)',
|
||||
},
|
||||
],
|
||||
]);
|
||||
32
frontend/packages/studio/plugin-shared/src/index.ts
Normal file
32
frontend/packages/studio/plugin-shared/src/index.ts
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
export {
|
||||
PluginType,
|
||||
type pluginTypeOption,
|
||||
locationOption,
|
||||
type OauthTccOpt,
|
||||
extInfoText,
|
||||
authOptionsPlaceholder,
|
||||
CLOUD_PLUGIN_COZE,
|
||||
CLOUD_PLUGIN_IDE,
|
||||
LOCAL_PLUGIN_COZE,
|
||||
doGetCreationMethodTips,
|
||||
grantTypeOptions,
|
||||
PLUGIN_SERVICE_MAP,
|
||||
PLUGIN_API_TYPE_MAP,
|
||||
} from './constants';
|
||||
export { type ExtInfoText, type PluginInfoProps, InitialAction } from './types';
|
||||
30
frontend/packages/studio/plugin-shared/src/types/index.ts
Normal file
30
frontend/packages/studio/plugin-shared/src/types/index.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { type GetPluginInfoResponse } from '@coze-arch/bot-api/plugin_develop';
|
||||
|
||||
export type PluginInfoProps = GetPluginInfoResponse & { plugin_id?: string };
|
||||
export interface ExtInfoText {
|
||||
type: 'title' | 'text' | 'br' | 'demo';
|
||||
text?: string;
|
||||
}
|
||||
|
||||
export enum InitialAction {
|
||||
DEFAULT = 'default',
|
||||
CREATE_TOOL = 'create_tool',
|
||||
SELECT_TOOL = 'select_tool',
|
||||
PUHSLISH = 'publish',
|
||||
}
|
||||
17
frontend/packages/studio/plugin-shared/src/typings.d.ts
vendored
Normal file
17
frontend/packages/studio/plugin-shared/src/typings.d.ts
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/// <reference types='@coze-arch/bot-typings' />
|
||||
42
frontend/packages/studio/plugin-shared/tsconfig.build.json
Normal file
42
frontend/packages/studio/plugin-shared/tsconfig.build.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"extends": "@coze-arch/ts-config/tsconfig.web.json",
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"compilerOptions": {
|
||||
"outDir": "dist",
|
||||
"rootDir": "src",
|
||||
"jsx": "react-jsx",
|
||||
"lib": ["DOM", "ESNext"],
|
||||
"module": "ESNext",
|
||||
"target": "ES2020",
|
||||
"moduleResolution": "bundler",
|
||||
"tsBuildInfoFile": "dist/tsconfig.build.tsbuildinfo"
|
||||
},
|
||||
"include": ["src"],
|
||||
"exclude": ["node_modules", "dist"],
|
||||
"references": [
|
||||
{
|
||||
"path": "../../arch/bot-api/tsconfig.build.json"
|
||||
},
|
||||
{
|
||||
"path": "../../arch/bot-typings/tsconfig.build.json"
|
||||
},
|
||||
{
|
||||
"path": "../../arch/i18n/tsconfig.build.json"
|
||||
},
|
||||
{
|
||||
"path": "../../components/bot-semi/tsconfig.build.json"
|
||||
},
|
||||
{
|
||||
"path": "../../../config/eslint-config/tsconfig.build.json"
|
||||
},
|
||||
{
|
||||
"path": "../../../config/stylelint-config/tsconfig.build.json"
|
||||
},
|
||||
{
|
||||
"path": "../../../config/ts-config/tsconfig.build.json"
|
||||
},
|
||||
{
|
||||
"path": "../../../config/vitest-config/tsconfig.build.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
15
frontend/packages/studio/plugin-shared/tsconfig.json
Normal file
15
frontend/packages/studio/plugin-shared/tsconfig.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"exclude": ["**/*"],
|
||||
"compilerOptions": {
|
||||
"composite": true
|
||||
},
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.build.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.misc.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
20
frontend/packages/studio/plugin-shared/tsconfig.misc.json
Normal file
20
frontend/packages/studio/plugin-shared/tsconfig.misc.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"extends": "@coze-arch/ts-config/tsconfig.web.json",
|
||||
"$schema": "https://json.schemastore.org/tsconfig",
|
||||
"compilerOptions": {
|
||||
"rootDir": "./",
|
||||
"outDir": "./dist",
|
||||
"jsx": "react-jsx",
|
||||
"lib": ["DOM", "ESNext"],
|
||||
"module": "ESNext",
|
||||
"target": "ES2020",
|
||||
"moduleResolution": "bundler"
|
||||
},
|
||||
"include": ["__tests__", "vitest.config.ts", "stories"],
|
||||
"exclude": ["./dist"],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.build.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
22
frontend/packages/studio/plugin-shared/vitest.config.ts
Normal file
22
frontend/packages/studio/plugin-shared/vitest.config.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Copyright 2025 coze-dev Authors
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { defineConfig } from '@coze-arch/vitest-config';
|
||||
|
||||
export default defineConfig({
|
||||
dirname: __dirname,
|
||||
preset: 'web',
|
||||
});
|
||||
Reference in New Issue
Block a user