Toru Nagashima
Toru Nagashima
In fact, [ESLint AST spec](https://eslint.org/docs/developer-guide/working-with-custom-parsers#the-ast-specification) also doesn't have `start` and `end` properties. Espree accidentally introduced those properties when it switched to acorn from esprima. It has been left because removing...
ESLint core rules have never used `start` and `end` properties :) But I'm not sure plugins... I think that we can add the verification to check whether rules don't use...
Thank you for your contribution. Why is the `types` field necessary? I have been using this package with TypeScript, but I have never experienced any problem.
I'm using TypeScript 3.5.2, too, but I couldn't reproduce it. The `tsc` command works fine and VSCode recognizes `abort-controller/dist/abort-controller.d.ts`. Would you provide repro steps?
Sorry, I still couldn't reproduce it. The `tsc` command doesn't show any errors. A console log ``` ~\dev\sandbox> cat test.ts import { AbortController } from "abort-controller" const controller = new...
Thank you for the question. Directories which have some content files will be copied automatically. If you want to copy empty directories, use `--include-empty-dirs` option.
Currently, no. I have designed this tool to copy specific files as companion to transpilers. I had not thought copying directories. The feature would be useful.
Thank you for this issue. I confirmed it. If there are parentheses, `cpx.copy` works, but `cpx.watch` does not work.
Thank you for this issue. Could you make a concrete proposal? I can work in this weekend. > Also migrating to the latest chokidar also would be nice `^1.6.0` looks...
Thank you for the information. I'm sorry that I failed to get time in the last weekend because of my job was busy. I'll work within some days, I have...