-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
suggest: gradually migrate mina-loader to use TypeScript #63
Comments
@imyelo what do you think? |
Couldn't agree more and it's already in my plan too. It's just I'm new to TypeScript, so I've recently started experimenting with it in other new projects. As soon as the time is right, I would also like to migrate existing projects to TypeScript. |
any documentation for use ts in mina? |
I'm trying to implement ts in tina examples: <config>
{
"pages": [
"pages/counter.mina"
]
}
</config>
<script lang="ts">
type A = {
a: string;
};
App({
onLaunch() {
console.log("Hello from App!");
}
});
</script>
when I run
|
Hi @mrbone |
@imyelo thanks for the reply, still struggle with ts-loader, a workaround is use |
looking forward to see the docs of 'how to use typescript'! |
allowJS
flagThe text was updated successfully, but these errors were encountered: