File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -397,64 +397,76 @@ declare module '@sveltejs/kit' {
397397 } ;
398398 /**
399399 * Where to find various files within your project.
400+ * @deprecated
400401 */
401402 files ?: {
402403 /**
403404 * the location of your source code
405+ * @deprecated
404406 * @default "src"
405407 * @since 2.28
406408 */
407409 src ?: string ;
408410 /**
409411 * a place to put static files that should have stable URLs and undergo no processing, such as `favicon.ico` or `manifest.json`
412+ * @deprecated
410413 * @default "static"
411414 */
412415 assets ?: string ;
413416 hooks ?: {
414417 /**
415418 * The location of your client [hooks](https://svelte.dev/docs/kit/hooks).
419+ * @deprecated
416420 * @default "src/hooks.client"
417421 */
418422 client ?: string ;
419423 /**
420424 * The location of your server [hooks](https://svelte.dev/docs/kit/hooks).
425+ * @deprecated
421426 * @default "src/hooks.server"
422427 */
423428 server ?: string ;
424429 /**
425430 * The location of your universal [hooks](https://svelte.dev/docs/kit/hooks).
431+ * @deprecated
426432 * @default "src/hooks"
427433 * @since 2.3.0
428434 */
429435 universal ?: string ;
430436 } ;
431437 /**
432438 * your app's internal library, accessible throughout the codebase as `$lib`
439+ * @deprecated
433440 * @default "src/lib"
434441 */
435442 lib ?: string ;
436443 /**
437444 * a directory containing [parameter matchers](https://svelte.dev/docs/kit/advanced-routing#Matching)
445+ * @deprecated
438446 * @default "src/params"
439447 */
440448 params ?: string ;
441449 /**
442450 * the files that define the structure of your app (see [Routing](https://svelte.dev/docs/kit/routing))
451+ * @deprecated
443452 * @default "src/routes"
444453 */
445454 routes ?: string ;
446455 /**
447456 * the location of your service worker's entry point (see [Service workers](https://svelte.dev/docs/kit/service-workers))
457+ * @deprecated
448458 * @default "src/service-worker"
449459 */
450460 serviceWorker ?: string ;
451461 /**
452462 * the location of the template for HTML responses
463+ * @deprecated
453464 * @default "src/app.html"
454465 */
455466 appTemplate ?: string ;
456467 /**
457468 * the location of the template for fallback error responses
469+ * @deprecated
458470 * @default "src/error.html"
459471 */
460472 errorTemplate ?: string ;
You can’t perform that action at this time.
0 commit comments