Romeo Van Snick
Romeo Van Snick
This script seems to work but the generated ttf file seems to be empty for me, am I doing something wrong?
@raymond-w-ko cool! Looks good. How did you manage to get ttf working? @frizzr I don't have a clue how to start working on Windows support. Perhaps Raymond can help you...
I'm sorry I didn't answer yet! I'll look into it soon!
Any progress on this? I'm not using ttystudio so I cannot really help you. Did you create an issue in the Pxxl repo?
Is there any plan to support this? React 18 has been released this month and I would like to be able to switch to it.
Yes, my approach to writing modules is currently to write them in ES6 but only expose ES5-compliant code (transpiling everything on `npm publish` for example). I get your concerns, and...
I've created a [small gist](https://gist.github.com/anonymous/ce96f7a4633f605eec44) with a proof of concept for a plugin. I'll start working on it!
@nmn but do these imports with babelify have the complete ES6 semantics? As far as I can see they just transform the `import` statements into `require` statements, but `require` and...
@nmn after some testing I can see that it does!
If I add ``` "lib": ["es2020"] ``` to `tsconfig.json`, I get the following error: ``` Cannot find name 'Request'. ``` Here's my full `tsconfig.json`: ``` { "compilerOptions": { "target": "es2020",...