Skip to content

Commit e2618af

Browse files
committed
only ignore .tanstack-start/build
1 parent 5ab8ac7 commit e2618af

File tree

2 files changed

+71
-1
lines changed

2 files changed

+71
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ yarn.lock
88
.vercel
99
.output
1010
.vinxi
11-
.tanstack-start/*
11+
.tanstack-start/build
1212
.nitro/*
1313
.netlify/*
1414

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
/* eslint-disable */
2+
3+
// @ts-nocheck
4+
5+
// noinspection JSUnusedGlobalSymbols
6+
7+
// This file was automatically generated by TanStack Router.
8+
// You should NOT make any changes in this file as it will be overwritten.
9+
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.
10+
11+
// Import Routes
12+
13+
import type {
14+
FileRoutesByPath,
15+
CreateServerFileRoute,
16+
} from '@tanstack/react-start/server'
17+
import {
18+
createServerRoute,
19+
createServerFileRoute,
20+
} from '@tanstack/react-start/server'
21+
22+
// Create/Update Routes
23+
24+
const rootRoute = createServerRoute()
25+
26+
// Populate the FileRoutesByPath interface
27+
28+
declare module '@tanstack/react-start/server' {
29+
interface FileRoutesByPath {}
30+
}
31+
32+
// Add type-safety to the createFileRoute function across the route tree
33+
34+
// Create and export the route tree
35+
36+
export interface FileRoutesByFullPath {}
37+
38+
export interface FileRoutesByTo {}
39+
40+
export interface FileRoutesById {
41+
__root__: typeof rootRoute
42+
}
43+
44+
export interface FileRouteTypes {
45+
fileRoutesByFullPath: FileRoutesByFullPath
46+
fullPaths: never
47+
fileRoutesByTo: FileRoutesByTo
48+
to: never
49+
id: '__root__'
50+
fileRoutesById: FileRoutesById
51+
}
52+
53+
export interface RootRouteChildren {}
54+
55+
const rootRouteChildren: RootRouteChildren = {}
56+
57+
export const routeTree = rootRoute
58+
._addFileChildren(rootRouteChildren)
59+
._addFileTypes<FileRouteTypes>()
60+
61+
/* ROUTE_MANIFEST_START
62+
{
63+
"routes": {
64+
"__root__": {
65+
"filePath": "__root.tsx",
66+
"children": []
67+
}
68+
}
69+
}
70+
ROUTE_MANIFEST_END */

0 commit comments

Comments
 (0)