From 03b527963e59c7c676818ed399a446df5fc029e0 Mon Sep 17 00:00:00 2001 From: yukkuri Date: Mon, 15 Jun 2026 18:38:31 +0900 Subject: [PATCH 1/3] =?UTF-8?q?add:=20Webdocs=E3=81=AE=E3=83=95=E3=83=83?= =?UTF-8?q?=E3=82=BF=E3=83=BC=E3=83=AA=E3=83=B3=E3=82=AF=E3=81=AE=E4=BD=9C?= =?UTF-8?q?=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docusaurus.config.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index b1e7bfb..c534e97 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -269,6 +269,22 @@ const config: Config = { label: 'はじめに', to: '/web-docs/intro', }, + { + label: 'よくあるミス', + to: '/web-docs/category/よくやりがちなミス', + }, + { + label: 'HTMLのヒント', + to: '/web-docs/category/HTML関係', + }, + { + label: 'Japascriptのヒント', + to: '/web-docs/category/Javascript関係', + }, + { + label: 'CSSのヒント', + to: '/web-docs/category/CSS関係', + }, ] }, { From 7f5c67312d9adfacfbf1a4ed3c0143bb1e10f2a7 Mon Sep 17 00:00:00 2001 From: yukkuri Date: Mon, 15 Jun 2026 21:26:02 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=E3=83=AA=E3=83=B3=E3=82=AF=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docusaurus.config.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index c534e97..3037ab7 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -275,15 +275,15 @@ const config: Config = { }, { label: 'HTMLのヒント', - to: '/web-docs/category/HTML関係', + to: '/web-docs/category/html関係', }, { label: 'Japascriptのヒント', - to: '/web-docs/category/Javascript関係', + to: '/web-docs/category/javascript関係', }, { label: 'CSSのヒント', - to: '/web-docs/category/CSS関係', + to: '/web-docs/category/css関係', }, ] }, From 84f4ccce646c8cd456521bfcf399e11da4f260b2 Mon Sep 17 00:00:00 2001 From: yukkuri Date: Mon, 15 Jun 2026 21:26:25 +0900 Subject: [PATCH 3/3] =?UTF-8?q?TS6.0=E9=9D=9E=E6=8E=A8=E5=A5=A8=E6=A9=9F?= =?UTF-8?q?=E8=83=BD=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 314eab8..f964c27 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,21 @@ { // This file is not used in compilation. It is here just for a nice editor experience. - "extends": "@docusaurus/tsconfig", + // NOTE: @docusaurus/tsconfig をそのまま継承すると、その中の "baseUrl" が + // TypeScript 6.0 以降で非推奨(TS5101, 7.0で廃止予定)となり警告が出る。 + // そのため継承せず必要な設定をインライン化し、"baseUrl" の代わりに + // このファイル(プロジェクトルート)からの相対 "paths" で "@site/*" を解決する。 "compilerOptions": { - "baseUrl": "." + "allowJs": true, + "esModuleInterop": true, + "jsx": "preserve", + "target": "ES2022", + "lib": ["ES2022", "DOM"], + "moduleResolution": "bundler", + "module": "esnext", + "noEmit": true, + "skipLibCheck": true, + "paths": { + "@site/*": ["./*"] + } } }