mudrz
mudrz
To use a different Entity Framework provider do the following: **project.json** ```js //"Microsoft.EntityFrameworkCore.SqlServer": "1.1.0", "Npgsql.EntityFrameworkCore.PostgreSQL": "1.1.0", ``` **Startup.cs** ```csharp // Add framework services. // services.AddDbContext(options => // options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"))); services.AddDbContext(options =>...
Not working for me either, webpack 2 (webpack correctly resolves the dependency) ## folder structure ``` root package.json webpack.config.base.js eslintrc.js someFolder foo ``` ## package.json ```json "eslint": "^3.16.1", "eslint-config-airbnb": "^14.1.0",...
Just fyi it might be an issue with webpack after all: https://github.com/webpack/webpack/issues/4160
@benmosher it was `foo.js`, imported as `foo` There's something in my setup that I haven't figured out yet. Right now webpack aliases work (both in webpack builds and eslint import...