niceSprite

Results 18 issues of niceSprite

Hello, Thanks for giving a good example of how `vue-template-compiler` can work with Webpack. Howerver, I explored `vue-loader`'s repo and found this [template compiler code](https://github.com/vuejs/vue-loader/tree/master/lib/template-compiler), it's actually the same logic...

```ts // api/test.ts import type { APIRequest } from "https://deno.land/x/aleph/types.ts" export default async function handler(req: APIRequest) { req.status(200).json({ data: 'test' }) } ``` ```ts // pages/index.tsx import { useDeno }...

✘ bug

Using ts-jest like: ``` transform: { "^.+\\.tsx?$": "ts-jest" }, ``` Will show coverage overlay correctly: ![image](https://user-images.githubusercontent.com/16523864/89705521-a41b6c00-d990-11ea-95fa-d9aaeb1285da.png) When using @swc-node/jest ![image](https://user-images.githubusercontent.com/16523864/89705543-ec3a8e80-d990-11ea-9bac-342f3ce2f459.png) The coverage overlay disappeared.

bug

macOS High Sierra, both safari and chrome

使用 ``` rules: [{ loader: 'vue-loader' }] ``` 这样的webpack config语法会有问题。

Duplicate #42,但问题是必然重现,在重新上传后。

Under some environments like WeChat Mini Program, built-in intrinsics are rewritten to prevent further modification. And the over-written code use getter/setter to hook property access and setting. For example, when...