From e6552a035ebdddd348c6414b84ee69ea6096043f Mon Sep 17 00:00:00 2001 From: Nathan Schulte Date: Wed, 22 Apr 2026 12:19:15 -0500 Subject: [PATCH 1/2] tsc: ignore v6 deprecations https://github.com/facebook/Docusaurus/issues/11893 https://github.com/facebook/docusaurus/pull/11915 --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index fae2c23..76db242 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,3 +1,7 @@ { - "extends": "@docusaurus/tsconfig" + "extends": "@docusaurus/tsconfig", + "compilerOptions": { + "baseUrl": ".", + "ignoreDeprecations": "6.0" + } } From fcffaa906481ddeea2d3cb7256998fdc101c6d21 Mon Sep 17 00:00:00 2001 From: Nathan Schulte Date: Wed, 22 Apr 2026 12:25:18 -0500 Subject: [PATCH 2/2] try fix DbcViewer typescript --- src/components/DbcViewer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DbcViewer.tsx b/src/components/DbcViewer.tsx index 0b00eed..7c3f898 100644 --- a/src/components/DbcViewer.tsx +++ b/src/components/DbcViewer.tsx @@ -5,7 +5,7 @@ import { dbcReader } from 'candied/lib/filesystem/DbcWebFs'; import { useEffect, useState } from 'react'; const DbcViewer = () => { - const [dbcData, setDbcData] = useState(null); + const [dbcData, setDbcData] = useState(); useEffect(() => { const dbc = new Dbc();