refactor(cli): update shared file extension

The shared file extension has been updated from .ts to .tsx in the path constants and the default configuration within the CLI package. This change aligns with our efforts to standardize the file types across the project.
This commit is contained in:
p-sw 2024-06-07 00:49:25 +09:00
parent 5f50d1d8f6
commit 1cecc6fb72

View File

@ -15,7 +15,7 @@ export interface Config {
*/ */
paths?: { paths?: {
components?: 'src/pswui/components' | string components?: 'src/pswui/components' | string
shared?: 'src/pswui/shared.ts' | string shared?: 'src/pswui/shared.tsx' | string
} }
/** /**
* Absolute path that will used for import in component * Absolute path that will used for import in component
@ -31,7 +31,7 @@ export type ResolvedConfig<T = Config> = {
export const DEFAULT_CONFIG = { export const DEFAULT_CONFIG = {
paths: { paths: {
components: 'src/pswui/components', components: 'src/pswui/components',
shared: 'src/pswui/shared.ts', shared: 'src/pswui/shared.tsx',
}, },
import: { import: {
shared: '@pswui-shared', shared: '@pswui-shared',