Christian24
Christian24
Hello, awesome project. I have an issue though. My JSON-Controller looks like this: ```typescript import {Router, Request, Response, NextFunction} from 'express'; import {getEntityManager, Repository} from "typeorm"; import {User} from "../models/user";...
Hello, I am getting the following error when starting an application in Microsoft Edge (not the Chromium one, the old one): `Unhandled promise rejection Error: Alias is already defined in...
# What / Why Adds an RFC for parent package.json which allows multiple packages to inherit fields/properties from a parent package.json similar to Maven or Gradle. This is my first...
**Describe the bug** We're having issues updating to webpack 5 and `webpack serve`. Our project is divided into multiple webpack configurations. Say for example we have one configuration for a...
**What**: This allows support for copy, cut & paste in inputs in open shadow dom custom elements. **Why**: Because I filled #1025 and #1026. This doesn't completely resolve #1026 though,...
### Problem description Hello, this is a follow up to #1025. Currently the library doesn't support web components which use shadow dom. This feature request only deals with **open** shadow...
### Problem description Hello, We want to use this library to write component tests for our web components. Since web components use builtin components within them (an `input` for example),...
Hello, I have the following controller: ````typescript @JsonController("/countries") export class CountriesController { private countryRepository: Repository; constructor() { this.countryRepository = getEntityManager().getRepository(Country); } @Get() getAll() { return this.countryRepository.find(); } @Get("/:id") getOne(@Param("id") id:...
## Description Very often it is desirable to set initial values for a component in a template (especially in forms). Bindings are very nice for this, however what happens when...
**Describe the bug** Hello, I don't know if this is the correct, project and a few problems that all seem to be related to either `webpack-cli` or `webpack-dev-server`, so please...