Guest User

Untitled

a guest
Jul 5th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /// <reference path="./node_modules/@types/sequelize/index.d.ts" />
  2.  
  3. type ConnectionOptions = {
  4. databaseName: string,
  5. user: string,
  6. password: string,
  7. connectionUrl: string,
  8. options: sequelize.Options
  9. };
  10.  
  11. {
  12. "compilerOptions": {
  13. "outDir": "build",
  14. "allowJs": true,
  15. "checkJs": false,
  16. "module": "CommonJS",
  17. "target": "ES5",
  18. "moduleResolution": "Node",
  19. "lib": ["es2015"],
  20. "noImplicitAny": true
  21. }
  22. }
Add Comment
Please, Sign In to add comment