Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/start/framework/react/build-from-scratch.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ 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",
"moduleResolution": "Bundler",
"module": "ESNext",
"target": "ES2022",
"skipLibCheck": true,
"strictNullChecks": true,
},
"strictNullChecks": true
}
}
```

Expand Down
6 changes: 3 additions & 3 deletions docs/start/framework/solid/build-from-scratch.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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
}
}
```

Expand Down