File: issue_template.md

package info (click to toggle)
node-rollup-plugin-typescript2 0.36.0%2Bds%2B~cs6.0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,368 kB
  • sloc: javascript: 1,211; sh: 4; makefile: 2
file content (94 lines) | stat: -rw-r--r-- 3,194 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
## Troubleshooting
<!--
  Please follow the steps below to ensure that you have troubleshot this problem sufficiently to believe that it is a bug in this plugin.
  Many issues are the result of common misconfigurations and are not bugs, so please follow the steps to help us help you and prioritize limited volunteer maintainer time.
-->

1. Does `tsc` have the same output? If so, please explain why this is incorrect behavior
    <!--
      This plugin uses the TS LanguageService under-the-hood.
      It tries to mimic tsc and add Rollup semantics where possible, so if tsc has the same output, the error you're getting may be correct and accurate.
      There are cases where they should differ, however, so if this is one of those, please elaborate.
    -->

1. Does your Rollup plugin order match [this plugin's compatibility](https://github.com/ezolenko/rollup-plugin-typescript2#compatibility)? If not, please elaborate
    <!--
      Rollup plugin order matters, so if there is a mismatch here, that could be the cause of your issue.
    -->

1. Can you create a [minimal example](https://stackoverflow.com/help/minimal-reproducible-example) that reproduces this behavior? Preferably, use [this environment](https://stackblitz.com/edit/rpt2-repro) for your reproduction
    <!--
      Minimal reproductions help us find the root cause of an issue much more expediently than trying to interpret and disentangle a complicated repo.
      The process of creating a minimal reproduction also often helps users find a misconfiguration in their code.
      It could also help you identify the root cause yourself and potentially create a Pull Request to fix it!
    -->

## What happens and why it is incorrect
<!--
  Please explain the issue you are encountering and why you believe it is incorrect behavior, in detail.
  Please list any error messages here.
-->

## Environment
<!-- Please describe your environment, especially anything potentially relevant to the problem -->

### Versions
<!--
  PLEASE RUN THIS COMMAND INSIDE YOUR PROJECT:

  npx envinfo --npmPackages typescript,rollup,rollup-plugin-typescript2 --npmGlobalPackages typescript --system os,cpu --binaries node,yarn,npm

  AND PASTE ITS CONTENTS BELOW INSIDE THE CODE SNIPPET vvvvvvvvv
-->

```text

```

<!--- paste your rollup config below if relevant --->
<details>
  <summary><h4><code>rollup.config.js</code></h4>: </summary>

<!--- INSERT rollup.config.ts IN THE CODE SNIPPET BELOW --->

```js

```

</details>

<!--- paste your tsconfig.json below if relevant --->
<details>
  <summary><h4><code>tsconfig.json</code></h4>: </summary>

<!--- INSERT tsconfig.json IN THE CODE SNIPPET BELOW --->

```json5

```

</details>

<!--- paste your package.json below if relevant --->
<details>
  <summary><h4><code>package.json</code></h4>: </summary>

<!--- INSERT package.json IN THE CODE SNIPPET BELOW --->

```json

```

</details>

<!--- add verbosity verbosity: 3 to plugin options and attach output if relevant (censor out anything sensitive) --->
<details>
  <summary><h4>plugin output with verbosity 3</h4>: </summary>

<!--- INSERT plugin output IN THE CODE SNIPPET BELOW or attach --->

```text

```

</details>