Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

Commit

Permalink
chore: tsr.config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
taga3s committed Apr 24, 2024
1 parent dea4d59 commit 316ce0e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
28 changes: 21 additions & 7 deletions src/routeTree.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ const QuestsIndexLazyRoute = QuestsIndexLazyImport.update({
const ProfileIndexLazyRoute = ProfileIndexLazyImport.update({
path: "/profile/",
getParentRoute: () => rootRoute,
} as any).lazy(() => import("./routes/profile/index.lazy").then((d) => d.Route));
} as any).lazy(() =>
import("./routes/profile/index.lazy").then((d) => d.Route),
);

const ManageIndexLazyRoute = ManageIndexLazyImport.update({
path: "/manage/",
Expand All @@ -58,32 +60,44 @@ const LoginIndexLazyRoute = LoginIndexLazyImport.update({
const AnalyticsIndexLazyRoute = AnalyticsIndexLazyImport.update({
path: "/analytics/",
getParentRoute: () => rootRoute,
} as any).lazy(() => import("./routes/analytics/index.lazy").then((d) => d.Route));
} as any).lazy(() =>
import("./routes/analytics/index.lazy").then((d) => d.Route),
);

const ProfileSettingsIndexLazyRoute = ProfileSettingsIndexLazyImport.update({
path: "/profile/settings/",
getParentRoute: () => rootRoute,
} as any).lazy(() => import("./routes/profile/settings/index.lazy").then((d) => d.Route));
} as any).lazy(() =>
import("./routes/profile/settings/index.lazy").then((d) => d.Route),
);

const ProfileBadgesIndexLazyRoute = ProfileBadgesIndexLazyImport.update({
path: "/profile/badges/",
getParentRoute: () => rootRoute,
} as any).lazy(() => import("./routes/profile/badges/index.lazy").then((d) => d.Route));
} as any).lazy(() =>
import("./routes/profile/badges/index.lazy").then((d) => d.Route),
);

const ManageTagsIndexLazyRoute = ManageTagsIndexLazyImport.update({
path: "/manage/tags/",
getParentRoute: () => rootRoute,
} as any).lazy(() => import("./routes/manage/tags/index.lazy").then((d) => d.Route));
} as any).lazy(() =>
import("./routes/manage/tags/index.lazy").then((d) => d.Route),
);

const ManageNewIndexLazyRoute = ManageNewIndexLazyImport.update({
path: "/manage/new/",
getParentRoute: () => rootRoute,
} as any).lazy(() => import("./routes/manage/new/index.lazy").then((d) => d.Route));
} as any).lazy(() =>
import("./routes/manage/new/index.lazy").then((d) => d.Route),
);

const ManageEditIndexLazyRoute = ManageEditIndexLazyImport.update({
path: "/manage/edit/",
getParentRoute: () => rootRoute,
} as any).lazy(() => import("./routes/manage/edit/index.lazy").then((d) => d.Route));
} as any).lazy(() =>
import("./routes/manage/edit/index.lazy").then((d) => d.Route),
);

// Populate the FileRoutesByPath interface

Expand Down
4 changes: 4 additions & 0 deletions tsr.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"quoteStyle": "double",
"semicolons": true
}

0 comments on commit 316ce0e

Please sign in to comment.