JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q48368F
  • License ISC

MSSql driver for Mikro-orm v4

Package Exports

  • mikro-orm-mssql
  • mikro-orm-mssql/index.ts

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mikro-orm-mssql) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

mikro-orm-mssql

This is a mssql driver for Mikro-orm v4. This is a work in progress until there is a driver available through the orm itself... (it's in the works)

import { MikroOrmModuleOptions } from 'nestjs-mikro-orm';
import { MsSqlDatabaseDriver } from 'mikro-orm-mssql';

export function ormConfigFactory(config: AppConfig): MikroOrmModuleOptions {
    return {
        // configuration here
        driver: MsSqlDatabaseDriver
    };
}