Thomas Chiantia
Thomas Chiantia
What is status of this? Every time i figure out a way to test a single component, a few months later it breaks.
Oh I see. Thank you for the references.
yes i think as a work around i have to peek into the package and import from the global scope :(
@elgs I made an es6 export version with a fork here: https://github.com/TomzBench/xterm.js It is a fork with a set of different tsconfig files + rollup to export an es module....
I import like this ```typescript import {Terminal} from "@altronix/xterm" ```
``` npm install @altronix/xterm ``` Then it will be inside your node modules. Are you trying to import from cdn? Or a script tag?
xtermjs typescript sources uses "paths" and referenced projects and outputs es5. So to have it build es6 output you can look at my fork and copy the tsconfig.es6.json files if...
I am interested in using the Parcel API to run the dev server. However the example doesn't seem to be available and the referenced comment seems out of date. My...
Thanks - but i looked at the PR and made similar change to my parcelrc but I'm sure how that makes the server open. With addition of the reporter -...
``` @use "@material/button"; .my-custom-button { // Sets button density scale to `-3`, i.e. button height to `24px`. @include button.density(-3); } ``` Is it possible to pass through this API? I...