From 2ae8fabf36911132b04e0484360b350f9b066fc4 Mon Sep 17 00:00:00 2001 From: RITIK JAIN <93763090+RJ025@users.noreply.github.com> Date: Tue, 4 Oct 2022 13:44:09 +0530 Subject: [PATCH] Docs: Remove the Prerequisites section in Create an Entity documentation #2289 (#2320) * update index.md removes Prerequisites from the Create An entity page * Update index.md now check i removed the spaces above create the entity * Update index.md --- docs/content/advanced/backend/entities/index.md | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/docs/content/advanced/backend/entities/index.md b/docs/content/advanced/backend/entities/index.md index 9dbd086e2b..82843d7a7c 100644 --- a/docs/content/advanced/backend/entities/index.md +++ b/docs/content/advanced/backend/entities/index.md @@ -2,20 +2,6 @@ In this document, you’ll learn how you can create an [Entity](overview.md). -## Prerequisites - -It’s recommended to create a `tsconfig.json` file in the root of your Medusa server with the following content: - -```jsx -{ - "compilerOptions": { - "experimentalDecorators": true - } -} -``` - -This will remove any errors that show up in your IDE related to experimental decorators. - ## Create the Entity To create an entity, create a TypeScript file in `src/models`. For example, here’s a `Post` entity defined in the file `src/models/post.ts`: