Is there a way to partially migrate to Teal? #594
Unanswered
kristijanhusak
asked this question in
Q&A
Replies: 2 comments 6 replies
-
I... think teal already does something like this? However, it requires a |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm thinking about migrating my project (https://github.com/nvim-orgmode/orgmode) to Teal, but since the project is fairly big at this point, I would like to do it partially and slowly add more and more types.
Is there a way to set up compile step to work similarly to how Typescript works with
allowJs: true
?Basically copy all
.lua
files toteal
folder, and have a compiler compile anytl
files that are inteal
folder tolua
folder as.lua
files, and forlua
files that are inteal
folder just to copy them over to the build path without actually doing any compiling.I can probably achieve this with some custom script that would know to compile teal + copy
.lua
files, but I want to check first if it's possible to configure compiler to do that for me.Beta Was this translation helpful? Give feedback.
All reactions