MyProject ├── src // place of your TypeScript code │ ├── entity // place where your entities (database models) are stored │ │ └── User.ts // sample entity │ ├── migration // place where your migrations are stored │ ├── data-source.ts // data source and all connection configuration │ └── index.ts // start point of your application ├── .gitignore // standard gitignore file ├── package.json // node module dependencies ├── README.md // simple readme file └── tsconfig.json // TypeScript compiler options