publicディレクトリなどの不要なファイル等は削除します。 開発するファイルを作成 今回は適当に色付きのコンソールログを作成。 src/lib/cclg/index.ts /** * @property label log text * @property color color of the label * @property bgColor background color of the label * @property value value of the label * @cStyle cStyle style of the label * @type type log type */ type TCclg = { label: string color?: string bgColor?: string value?: string | number | object | n