@tanstack/router-plugin 1.77.7 → 1.78.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/core/config.d.cts +22 -0
- package/dist/cjs/esbuild.d.cts +12 -0
- package/dist/cjs/rspack.d.cts +12 -0
- package/dist/cjs/vite.d.cts +12 -0
- package/dist/cjs/webpack.d.cts +12 -0
- package/dist/esm/core/config.d.ts +22 -0
- package/dist/esm/esbuild.d.ts +12 -0
- package/dist/esm/rspack.d.ts +12 -0
- package/dist/esm/vite.d.ts +12 -0
- package/dist/esm/webpack.d.ts +12 -0
- package/package.json +3 -3
|
@@ -18,6 +18,16 @@ export declare const configSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18
18
|
autoCodeSplitting: z.ZodOptional<z.ZodBoolean>;
|
|
19
19
|
indexToken: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20
20
|
routeToken: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
21
|
+
customScaffolding: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
22
|
+
routeTemplate: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23
|
+
apiTemplate: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24
|
+
}, "strip", z.ZodTypeAny, {
|
|
25
|
+
routeTemplate: string;
|
|
26
|
+
apiTemplate: string;
|
|
27
|
+
}, {
|
|
28
|
+
routeTemplate?: string | undefined;
|
|
29
|
+
apiTemplate?: string | undefined;
|
|
30
|
+
}>>>;
|
|
21
31
|
experimental: z.ZodOptional<z.ZodObject<{
|
|
22
32
|
enableCodeSplitting: z.ZodOptional<z.ZodBoolean>;
|
|
23
33
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -42,6 +52,10 @@ export declare const configSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
42
52
|
routeTreeFileFooter: string[];
|
|
43
53
|
indexToken: string;
|
|
44
54
|
routeToken: string;
|
|
55
|
+
customScaffolding: {
|
|
56
|
+
routeTemplate: string;
|
|
57
|
+
apiTemplate: string;
|
|
58
|
+
};
|
|
45
59
|
enableRouteGeneration?: boolean | undefined;
|
|
46
60
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
47
61
|
routeFilePrefix?: string | undefined;
|
|
@@ -70,6 +84,10 @@ export declare const configSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
70
84
|
autoCodeSplitting?: boolean | undefined;
|
|
71
85
|
indexToken?: string | undefined;
|
|
72
86
|
routeToken?: string | undefined;
|
|
87
|
+
customScaffolding?: {
|
|
88
|
+
routeTemplate?: string | undefined;
|
|
89
|
+
apiTemplate?: string | undefined;
|
|
90
|
+
} | undefined;
|
|
73
91
|
experimental?: {
|
|
74
92
|
enableCodeSplitting?: boolean | undefined;
|
|
75
93
|
} | undefined;
|
|
@@ -89,6 +107,10 @@ export declare const getConfig: (inlineConfig: Partial<Config>, root: string) =>
|
|
|
89
107
|
routeTreeFileFooter: string[];
|
|
90
108
|
indexToken: string;
|
|
91
109
|
routeToken: string;
|
|
110
|
+
customScaffolding: {
|
|
111
|
+
routeTemplate: string;
|
|
112
|
+
apiTemplate: string;
|
|
113
|
+
};
|
|
92
114
|
enableRouteGeneration?: boolean | undefined;
|
|
93
115
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
94
116
|
routeFilePrefix?: string | undefined;
|
package/dist/cjs/esbuild.d.cts
CHANGED
|
@@ -23,6 +23,10 @@ declare const TanStackRouterGeneratorEsbuild: (options?: Partial<{
|
|
|
23
23
|
routeTreeFileFooter: string[];
|
|
24
24
|
indexToken: string;
|
|
25
25
|
routeToken: string;
|
|
26
|
+
customScaffolding: {
|
|
27
|
+
routeTemplate: string;
|
|
28
|
+
apiTemplate: string;
|
|
29
|
+
};
|
|
26
30
|
enableRouteGeneration?: boolean | undefined;
|
|
27
31
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
28
32
|
routeFilePrefix?: string | undefined;
|
|
@@ -56,6 +60,10 @@ declare const TanStackRouterCodeSplitterEsbuild: (options?: Partial<{
|
|
|
56
60
|
routeTreeFileFooter: string[];
|
|
57
61
|
indexToken: string;
|
|
58
62
|
routeToken: string;
|
|
63
|
+
customScaffolding: {
|
|
64
|
+
routeTemplate: string;
|
|
65
|
+
apiTemplate: string;
|
|
66
|
+
};
|
|
59
67
|
enableRouteGeneration?: boolean | undefined;
|
|
60
68
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
61
69
|
routeFilePrefix?: string | undefined;
|
|
@@ -89,6 +97,10 @@ declare const TanStackRouterEsbuild: (options?: Partial<{
|
|
|
89
97
|
routeTreeFileFooter: string[];
|
|
90
98
|
indexToken: string;
|
|
91
99
|
routeToken: string;
|
|
100
|
+
customScaffolding: {
|
|
101
|
+
routeTemplate: string;
|
|
102
|
+
apiTemplate: string;
|
|
103
|
+
};
|
|
92
104
|
enableRouteGeneration?: boolean | undefined;
|
|
93
105
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
94
106
|
routeFilePrefix?: string | undefined;
|
package/dist/cjs/rspack.d.cts
CHANGED
|
@@ -27,6 +27,10 @@ declare const TanStackRouterGeneratorRspack: (options?: Partial<{
|
|
|
27
27
|
routeTreeFileFooter: string[];
|
|
28
28
|
indexToken: string;
|
|
29
29
|
routeToken: string;
|
|
30
|
+
customScaffolding: {
|
|
31
|
+
routeTemplate: string;
|
|
32
|
+
apiTemplate: string;
|
|
33
|
+
};
|
|
30
34
|
enableRouteGeneration?: boolean | undefined;
|
|
31
35
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
32
36
|
routeFilePrefix?: string | undefined;
|
|
@@ -64,6 +68,10 @@ declare const TanStackRouterCodeSplitterRspack: (options?: Partial<{
|
|
|
64
68
|
routeTreeFileFooter: string[];
|
|
65
69
|
indexToken: string;
|
|
66
70
|
routeToken: string;
|
|
71
|
+
customScaffolding: {
|
|
72
|
+
routeTemplate: string;
|
|
73
|
+
apiTemplate: string;
|
|
74
|
+
};
|
|
67
75
|
enableRouteGeneration?: boolean | undefined;
|
|
68
76
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
69
77
|
routeFilePrefix?: string | undefined;
|
|
@@ -101,6 +109,10 @@ declare const TanStackRouterRspack: (options?: Partial<{
|
|
|
101
109
|
routeTreeFileFooter: string[];
|
|
102
110
|
indexToken: string;
|
|
103
111
|
routeToken: string;
|
|
112
|
+
customScaffolding: {
|
|
113
|
+
routeTemplate: string;
|
|
114
|
+
apiTemplate: string;
|
|
115
|
+
};
|
|
104
116
|
enableRouteGeneration?: boolean | undefined;
|
|
105
117
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
106
118
|
routeFilePrefix?: string | undefined;
|
package/dist/cjs/vite.d.cts
CHANGED
|
@@ -23,6 +23,10 @@ declare const TanStackRouterGeneratorVite: (options?: Partial<{
|
|
|
23
23
|
routeTreeFileFooter: string[];
|
|
24
24
|
indexToken: string;
|
|
25
25
|
routeToken: string;
|
|
26
|
+
customScaffolding: {
|
|
27
|
+
routeTemplate: string;
|
|
28
|
+
apiTemplate: string;
|
|
29
|
+
};
|
|
26
30
|
enableRouteGeneration?: boolean | undefined;
|
|
27
31
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
28
32
|
routeFilePrefix?: string | undefined;
|
|
@@ -56,6 +60,10 @@ declare const TanStackRouterCodeSplitterVite: (options?: Partial<{
|
|
|
56
60
|
routeTreeFileFooter: string[];
|
|
57
61
|
indexToken: string;
|
|
58
62
|
routeToken: string;
|
|
63
|
+
customScaffolding: {
|
|
64
|
+
routeTemplate: string;
|
|
65
|
+
apiTemplate: string;
|
|
66
|
+
};
|
|
59
67
|
enableRouteGeneration?: boolean | undefined;
|
|
60
68
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
61
69
|
routeFilePrefix?: string | undefined;
|
|
@@ -89,6 +97,10 @@ declare const TanStackRouterVite: (options?: Partial<{
|
|
|
89
97
|
routeTreeFileFooter: string[];
|
|
90
98
|
indexToken: string;
|
|
91
99
|
routeToken: string;
|
|
100
|
+
customScaffolding: {
|
|
101
|
+
routeTemplate: string;
|
|
102
|
+
apiTemplate: string;
|
|
103
|
+
};
|
|
92
104
|
enableRouteGeneration?: boolean | undefined;
|
|
93
105
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
94
106
|
routeFilePrefix?: string | undefined;
|
package/dist/cjs/webpack.d.cts
CHANGED
|
@@ -23,6 +23,10 @@ declare const TanStackRouterGeneratorWebpack: (options?: Partial<{
|
|
|
23
23
|
routeTreeFileFooter: string[];
|
|
24
24
|
indexToken: string;
|
|
25
25
|
routeToken: string;
|
|
26
|
+
customScaffolding: {
|
|
27
|
+
routeTemplate: string;
|
|
28
|
+
apiTemplate: string;
|
|
29
|
+
};
|
|
26
30
|
enableRouteGeneration?: boolean | undefined;
|
|
27
31
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
28
32
|
routeFilePrefix?: string | undefined;
|
|
@@ -56,6 +60,10 @@ declare const TanStackRouterCodeSplitterWebpack: (options?: Partial<{
|
|
|
56
60
|
routeTreeFileFooter: string[];
|
|
57
61
|
indexToken: string;
|
|
58
62
|
routeToken: string;
|
|
63
|
+
customScaffolding: {
|
|
64
|
+
routeTemplate: string;
|
|
65
|
+
apiTemplate: string;
|
|
66
|
+
};
|
|
59
67
|
enableRouteGeneration?: boolean | undefined;
|
|
60
68
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
61
69
|
routeFilePrefix?: string | undefined;
|
|
@@ -89,6 +97,10 @@ declare const TanStackRouterWebpack: (options?: Partial<{
|
|
|
89
97
|
routeTreeFileFooter: string[];
|
|
90
98
|
indexToken: string;
|
|
91
99
|
routeToken: string;
|
|
100
|
+
customScaffolding: {
|
|
101
|
+
routeTemplate: string;
|
|
102
|
+
apiTemplate: string;
|
|
103
|
+
};
|
|
92
104
|
enableRouteGeneration?: boolean | undefined;
|
|
93
105
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
94
106
|
routeFilePrefix?: string | undefined;
|
|
@@ -18,6 +18,16 @@ export declare const configSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
18
18
|
autoCodeSplitting: z.ZodOptional<z.ZodBoolean>;
|
|
19
19
|
indexToken: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
20
20
|
routeToken: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
21
|
+
customScaffolding: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
22
|
+
routeTemplate: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
23
|
+
apiTemplate: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24
|
+
}, "strip", z.ZodTypeAny, {
|
|
25
|
+
routeTemplate: string;
|
|
26
|
+
apiTemplate: string;
|
|
27
|
+
}, {
|
|
28
|
+
routeTemplate?: string | undefined;
|
|
29
|
+
apiTemplate?: string | undefined;
|
|
30
|
+
}>>>;
|
|
21
31
|
experimental: z.ZodOptional<z.ZodObject<{
|
|
22
32
|
enableCodeSplitting: z.ZodOptional<z.ZodBoolean>;
|
|
23
33
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -42,6 +52,10 @@ export declare const configSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
42
52
|
routeTreeFileFooter: string[];
|
|
43
53
|
indexToken: string;
|
|
44
54
|
routeToken: string;
|
|
55
|
+
customScaffolding: {
|
|
56
|
+
routeTemplate: string;
|
|
57
|
+
apiTemplate: string;
|
|
58
|
+
};
|
|
45
59
|
enableRouteGeneration?: boolean | undefined;
|
|
46
60
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
47
61
|
routeFilePrefix?: string | undefined;
|
|
@@ -70,6 +84,10 @@ export declare const configSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
70
84
|
autoCodeSplitting?: boolean | undefined;
|
|
71
85
|
indexToken?: string | undefined;
|
|
72
86
|
routeToken?: string | undefined;
|
|
87
|
+
customScaffolding?: {
|
|
88
|
+
routeTemplate?: string | undefined;
|
|
89
|
+
apiTemplate?: string | undefined;
|
|
90
|
+
} | undefined;
|
|
73
91
|
experimental?: {
|
|
74
92
|
enableCodeSplitting?: boolean | undefined;
|
|
75
93
|
} | undefined;
|
|
@@ -89,6 +107,10 @@ export declare const getConfig: (inlineConfig: Partial<Config>, root: string) =>
|
|
|
89
107
|
routeTreeFileFooter: string[];
|
|
90
108
|
indexToken: string;
|
|
91
109
|
routeToken: string;
|
|
110
|
+
customScaffolding: {
|
|
111
|
+
routeTemplate: string;
|
|
112
|
+
apiTemplate: string;
|
|
113
|
+
};
|
|
92
114
|
enableRouteGeneration?: boolean | undefined;
|
|
93
115
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
94
116
|
routeFilePrefix?: string | undefined;
|
package/dist/esm/esbuild.d.ts
CHANGED
|
@@ -23,6 +23,10 @@ declare const TanStackRouterGeneratorEsbuild: (options?: Partial<{
|
|
|
23
23
|
routeTreeFileFooter: string[];
|
|
24
24
|
indexToken: string;
|
|
25
25
|
routeToken: string;
|
|
26
|
+
customScaffolding: {
|
|
27
|
+
routeTemplate: string;
|
|
28
|
+
apiTemplate: string;
|
|
29
|
+
};
|
|
26
30
|
enableRouteGeneration?: boolean | undefined;
|
|
27
31
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
28
32
|
routeFilePrefix?: string | undefined;
|
|
@@ -56,6 +60,10 @@ declare const TanStackRouterCodeSplitterEsbuild: (options?: Partial<{
|
|
|
56
60
|
routeTreeFileFooter: string[];
|
|
57
61
|
indexToken: string;
|
|
58
62
|
routeToken: string;
|
|
63
|
+
customScaffolding: {
|
|
64
|
+
routeTemplate: string;
|
|
65
|
+
apiTemplate: string;
|
|
66
|
+
};
|
|
59
67
|
enableRouteGeneration?: boolean | undefined;
|
|
60
68
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
61
69
|
routeFilePrefix?: string | undefined;
|
|
@@ -89,6 +97,10 @@ declare const TanStackRouterEsbuild: (options?: Partial<{
|
|
|
89
97
|
routeTreeFileFooter: string[];
|
|
90
98
|
indexToken: string;
|
|
91
99
|
routeToken: string;
|
|
100
|
+
customScaffolding: {
|
|
101
|
+
routeTemplate: string;
|
|
102
|
+
apiTemplate: string;
|
|
103
|
+
};
|
|
92
104
|
enableRouteGeneration?: boolean | undefined;
|
|
93
105
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
94
106
|
routeFilePrefix?: string | undefined;
|
package/dist/esm/rspack.d.ts
CHANGED
|
@@ -27,6 +27,10 @@ declare const TanStackRouterGeneratorRspack: (options?: Partial<{
|
|
|
27
27
|
routeTreeFileFooter: string[];
|
|
28
28
|
indexToken: string;
|
|
29
29
|
routeToken: string;
|
|
30
|
+
customScaffolding: {
|
|
31
|
+
routeTemplate: string;
|
|
32
|
+
apiTemplate: string;
|
|
33
|
+
};
|
|
30
34
|
enableRouteGeneration?: boolean | undefined;
|
|
31
35
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
32
36
|
routeFilePrefix?: string | undefined;
|
|
@@ -64,6 +68,10 @@ declare const TanStackRouterCodeSplitterRspack: (options?: Partial<{
|
|
|
64
68
|
routeTreeFileFooter: string[];
|
|
65
69
|
indexToken: string;
|
|
66
70
|
routeToken: string;
|
|
71
|
+
customScaffolding: {
|
|
72
|
+
routeTemplate: string;
|
|
73
|
+
apiTemplate: string;
|
|
74
|
+
};
|
|
67
75
|
enableRouteGeneration?: boolean | undefined;
|
|
68
76
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
69
77
|
routeFilePrefix?: string | undefined;
|
|
@@ -101,6 +109,10 @@ declare const TanStackRouterRspack: (options?: Partial<{
|
|
|
101
109
|
routeTreeFileFooter: string[];
|
|
102
110
|
indexToken: string;
|
|
103
111
|
routeToken: string;
|
|
112
|
+
customScaffolding: {
|
|
113
|
+
routeTemplate: string;
|
|
114
|
+
apiTemplate: string;
|
|
115
|
+
};
|
|
104
116
|
enableRouteGeneration?: boolean | undefined;
|
|
105
117
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
106
118
|
routeFilePrefix?: string | undefined;
|
package/dist/esm/vite.d.ts
CHANGED
|
@@ -23,6 +23,10 @@ declare const TanStackRouterGeneratorVite: (options?: Partial<{
|
|
|
23
23
|
routeTreeFileFooter: string[];
|
|
24
24
|
indexToken: string;
|
|
25
25
|
routeToken: string;
|
|
26
|
+
customScaffolding: {
|
|
27
|
+
routeTemplate: string;
|
|
28
|
+
apiTemplate: string;
|
|
29
|
+
};
|
|
26
30
|
enableRouteGeneration?: boolean | undefined;
|
|
27
31
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
28
32
|
routeFilePrefix?: string | undefined;
|
|
@@ -56,6 +60,10 @@ declare const TanStackRouterCodeSplitterVite: (options?: Partial<{
|
|
|
56
60
|
routeTreeFileFooter: string[];
|
|
57
61
|
indexToken: string;
|
|
58
62
|
routeToken: string;
|
|
63
|
+
customScaffolding: {
|
|
64
|
+
routeTemplate: string;
|
|
65
|
+
apiTemplate: string;
|
|
66
|
+
};
|
|
59
67
|
enableRouteGeneration?: boolean | undefined;
|
|
60
68
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
61
69
|
routeFilePrefix?: string | undefined;
|
|
@@ -89,6 +97,10 @@ declare const TanStackRouterVite: (options?: Partial<{
|
|
|
89
97
|
routeTreeFileFooter: string[];
|
|
90
98
|
indexToken: string;
|
|
91
99
|
routeToken: string;
|
|
100
|
+
customScaffolding: {
|
|
101
|
+
routeTemplate: string;
|
|
102
|
+
apiTemplate: string;
|
|
103
|
+
};
|
|
92
104
|
enableRouteGeneration?: boolean | undefined;
|
|
93
105
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
94
106
|
routeFilePrefix?: string | undefined;
|
package/dist/esm/webpack.d.ts
CHANGED
|
@@ -23,6 +23,10 @@ declare const TanStackRouterGeneratorWebpack: (options?: Partial<{
|
|
|
23
23
|
routeTreeFileFooter: string[];
|
|
24
24
|
indexToken: string;
|
|
25
25
|
routeToken: string;
|
|
26
|
+
customScaffolding: {
|
|
27
|
+
routeTemplate: string;
|
|
28
|
+
apiTemplate: string;
|
|
29
|
+
};
|
|
26
30
|
enableRouteGeneration?: boolean | undefined;
|
|
27
31
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
28
32
|
routeFilePrefix?: string | undefined;
|
|
@@ -56,6 +60,10 @@ declare const TanStackRouterCodeSplitterWebpack: (options?: Partial<{
|
|
|
56
60
|
routeTreeFileFooter: string[];
|
|
57
61
|
indexToken: string;
|
|
58
62
|
routeToken: string;
|
|
63
|
+
customScaffolding: {
|
|
64
|
+
routeTemplate: string;
|
|
65
|
+
apiTemplate: string;
|
|
66
|
+
};
|
|
59
67
|
enableRouteGeneration?: boolean | undefined;
|
|
60
68
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
61
69
|
routeFilePrefix?: string | undefined;
|
|
@@ -89,6 +97,10 @@ declare const TanStackRouterWebpack: (options?: Partial<{
|
|
|
89
97
|
routeTreeFileFooter: string[];
|
|
90
98
|
indexToken: string;
|
|
91
99
|
routeToken: string;
|
|
100
|
+
customScaffolding: {
|
|
101
|
+
routeTemplate: string;
|
|
102
|
+
apiTemplate: string;
|
|
103
|
+
};
|
|
92
104
|
enableRouteGeneration?: boolean | undefined;
|
|
93
105
|
virtualRouteConfig?: import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
94
106
|
routeFilePrefix?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/router-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.78.0",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
"chokidar": "^3.6.0",
|
|
103
103
|
"unplugin": "^1.12.2",
|
|
104
104
|
"zod": "^3.23.8",
|
|
105
|
-
"@tanstack/
|
|
106
|
-
"@tanstack/
|
|
105
|
+
"@tanstack/virtual-file-routes": "^1.64.0",
|
|
106
|
+
"@tanstack/router-generator": "^1.78.0"
|
|
107
107
|
},
|
|
108
108
|
"peerDependencies": {
|
|
109
109
|
"@rsbuild/core": ">=1.0.2",
|