diff --git a/15/umbraco-cms/customizing/development-flow/typescript-setup.md b/15/umbraco-cms/customizing/development-flow/typescript-setup.md index 3113b51d9bf..0685b1c1bd4 100644 --- a/15/umbraco-cms/customizing/development-flow/typescript-setup.md +++ b/15/umbraco-cms/customizing/development-flow/typescript-setup.md @@ -2,14 +2,14 @@ Make sure to configure your TypeScript compiler so it includes the Global Types from the Backoffice. This enables you to utilize the declared Extension Types. If your project is using other Packages that provides their Extension Types then please list these as well. -In your `tsconfig.json` file. Add the array `types` inside `compilerOptions`, with the entry of `@umbraco-cms/backoffice/extension-types`: +In your `tsconfig.json` file. Add the array `types` inside `compilerOptions`, with the entry of `@umbraco-cms/backoffice/dist-cms/packages/extension-types`: ```json { "compilerOptions": { ... "types": [ - "@umbraco-cms/backoffice/extension-types" + "@umbraco-cms/backoffice/dist-cms/packages/extension-types" ] } } diff --git a/15/umbraco-cms/customizing/development-flow/vite-package-setup.md b/15/umbraco-cms/customizing/development-flow/vite-package-setup.md index 5d0f2196ced..1d83e58fc0d 100644 --- a/15/umbraco-cms/customizing/development-flow/vite-package-setup.md +++ b/15/umbraco-cms/customizing/development-flow/vite-package-setup.md @@ -82,14 +82,14 @@ npm install --legacy-peer-deps -D @umbraco-cms/backoffice This disables IntelliSense for external references but keeps the install lean. 7. Open the `tsconfig.json` file. -8. Add the array `types` inside `compilerOptions`, with the entry of `@umbraco-cms/backoffice/extension-types`: +8. Add the array `types` inside `compilerOptions`, with the entry of `@umbraco-cms/backoffice/dist-cms/packages/extension-types`: ```json { "compilerOptions": { ... "types": [ - "@umbraco-cms/backoffice/extension-types" + "@umbraco-cms/backoffice/dist-cms/packages/extension-types" ] } } diff --git a/15/umbraco-cms/customizing/extending-overview/extension-types/bundle.md b/15/umbraco-cms/customizing/extending-overview/extension-types/bundle.md index 78470d31f30..ab2b92f75aa 100644 --- a/15/umbraco-cms/customizing/extending-overview/extension-types/bundle.md +++ b/15/umbraco-cms/customizing/extending-overview/extension-types/bundle.md @@ -51,14 +51,14 @@ export const manifests: Array = [ {% endcode %} {% hint style="info" %} -Ensure you have set up your `tsconfig.json` to include the extension-types as global types. Like this: +Ensure you have set up your `tsconfig.json` to include the `extension-types` as global types. Like this: ```json { "compilerOptions": { ... "types": [ - "@umbraco-cms/backoffice/extension-types" + "@umbraco-cms/backoffice/dist-cms/packages/extension-types" ] } } diff --git a/16/umbraco-cms/customizing/development-flow/README.md b/16/umbraco-cms/customizing/development-flow/README.md index 216d6a0989d..80305896849 100644 --- a/16/umbraco-cms/customizing/development-flow/README.md +++ b/16/umbraco-cms/customizing/development-flow/README.md @@ -82,14 +82,14 @@ This will add a package to your devDependencies containing the TypeScript defini Make sure to configure your TypeScript compiler so it includes the Global Types from the Backoffice. This enables you to utilize the declared Extension Types. If your project is using other Packages that provide their Extension Types, list these as well. -In your `tsconfig.json` file, add the array `types` inside `compilerOptions`, with the entry of `@umbraco-cms/backoffice/extension-types`: +In your `tsconfig.json` file, add the array `types` inside `compilerOptions`, with the entry of `@umbraco-cms/backoffice/dist-cms/packages/extension-types`: ```json { "compilerOptions": { ... "types": [ - "@umbraco-cms/backoffice/extension-types" + "@umbraco-cms/backoffice/dist-cms/packages/extension-types" ] } } diff --git a/16/umbraco-cms/customizing/development-flow/vite-package-setup.md b/16/umbraco-cms/customizing/development-flow/vite-package-setup.md index 0afe7f7db7e..7f0404d1684 100644 --- a/16/umbraco-cms/customizing/development-flow/vite-package-setup.md +++ b/16/umbraco-cms/customizing/development-flow/vite-package-setup.md @@ -74,14 +74,14 @@ npm install --legacy-peer-deps -D @umbraco-cms/backoffice@x.x.x This disables IntelliSense for external references but keeps the install lean. 7. Open the `tsconfig.json` file. -8. Add the array `types` inside `compilerOptions`, with the entry of `@umbraco-cms/backoffice/extension-types`: +8. Add the array `types` inside `compilerOptions`, with the entry of `@umbraco-cms/backoffice/dist-cms/packages/extension-types`: ```json { "compilerOptions": { ... "types": [ - "@umbraco-cms/backoffice/extension-types" + "@umbraco-cms/backoffice/dist-cms/packages/extension-types" ] } } diff --git a/16/umbraco-cms/customizing/extending-overview/extension-types/bundle.md b/16/umbraco-cms/customizing/extending-overview/extension-types/bundle.md index 78470d31f30..ab2b92f75aa 100644 --- a/16/umbraco-cms/customizing/extending-overview/extension-types/bundle.md +++ b/16/umbraco-cms/customizing/extending-overview/extension-types/bundle.md @@ -51,14 +51,14 @@ export const manifests: Array = [ {% endcode %} {% hint style="info" %} -Ensure you have set up your `tsconfig.json` to include the extension-types as global types. Like this: +Ensure you have set up your `tsconfig.json` to include the `extension-types` as global types. Like this: ```json { "compilerOptions": { ... "types": [ - "@umbraco-cms/backoffice/extension-types" + "@umbraco-cms/backoffice/dist-cms/packages/extension-types" ] } }