diff --git a/docs/start/framework/react/build-from-scratch.md b/docs/start/framework/react/build-from-scratch.md index 5cb2e8e4837..055526d7f81 100644 --- a/docs/start/framework/react/build-from-scratch.md +++ b/docs/start/framework/react/build-from-scratch.md @@ -30,7 +30,7 @@ npm init -y We highly recommend using TypeScript with TanStack Start. Create a `tsconfig.json` file with at least the following settings: -```jsonc +```json { "compilerOptions": { "jsx": "react-jsx", @@ -38,8 +38,8 @@ We highly recommend using TypeScript with TanStack Start. Create a `tsconfig.jso "module": "ESNext", "target": "ES2022", "skipLibCheck": true, - "strictNullChecks": true, - }, + "strictNullChecks": true + } } ``` diff --git a/docs/start/framework/solid/build-from-scratch.md b/docs/start/framework/solid/build-from-scratch.md index 6e00a653240..c5fcdb35632 100644 --- a/docs/start/framework/solid/build-from-scratch.md +++ b/docs/start/framework/solid/build-from-scratch.md @@ -30,7 +30,7 @@ npm init -y We highly recommend using TypeScript with TanStack Start. Create a `tsconfig.json` file with at least the following settings: -```jsonc +```json { "compilerOptions": { "jsx": "preserve", @@ -39,8 +39,8 @@ We highly recommend using TypeScript with TanStack Start. Create a `tsconfig.jso "module": "ESNext", "target": "ES2022", "skipLibCheck": true, - "strictNullChecks": true, - }, + "strictNullChecks": true + } } ```