Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/themyth92/sequelize-typings
Sequelize typings from sequelize v5. Mirror from the sequelize repo.
https://github.com/themyth92/sequelize-typings
Last synced: 18 days ago
JSON representation
Sequelize typings from sequelize v5. Mirror from the sequelize repo.
- Host: GitHub
- URL: https://github.com/themyth92/sequelize-typings
- Owner: themyth92
- License: mit
- Created: 2019-06-19T03:01:01.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-07-11T04:31:10.000Z (over 5 years ago)
- Last Synced: 2024-09-14T14:19:46.457Z (2 months ago)
- Homepage:
- Size: 98.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Sequelize Typing
- V5 sequelize typing, which mirrors [sequelize](https://github.com/sequelize/sequelize/tree/master/types).
- This repository is here as I dont want to install the whole sequelize library to get the typing and the typing from DefinitelyTyped only supports v4.## Command
- `npm install @ts-typings/sequelize`
- Include custom types in your tsconfig. I.e:```
"compilerOptions": {
...
"baseUrl": "./",
"paths": {
"*": ["node_modules/@ts-typings/*"]
}
}
```