Question

How to use TypeScript in a Functions (serverless) Project

I’m getting familiar with the new Functions offering and I see a variety of languages supported. Since my project is heavily typed, I would like to use TypeScript instead of vanilla JavaScript. I cannot find any example projects.

Is this even possible or with how Functions are build, it can only be JavaScript within the repo that will be tied to “Apps” for production use?


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

@kisonay

I’ve been working on a CLI library (docts) which enhances the development experience for Typescript function projects.

It allows you to:

  1. Create a new TS project using a familiar file structure

  2. Add/Remove functions to/from your project with automatic project.yml update

  3. Manage all function dependencies from the project package.json instead of individual package.json

  4. Build your project to get the packages which can then be deployed on App Platform or a function namespace

Check it out on Github and on NPM

If you find it helpful, kindly leave a star on the project

Bobby Iliev
Site Moderator
Site Moderator badge
September 8, 2022

Hey @kisonay,

I don’t think that this is possible as of the time being.

The best thing to do to get your voice heard regarding this would be to head over to our Product Ideas board and post a new idea, including as much information as possible for what you’d like to see implemented.

https://ideas.digitalocean.com/

Hope that helps!

- Bobby.

Currently I’m using in a “hacky” way, it’s not ideal, but works… My build script on package.js is:

npm install typescript && tsc my_script.ts && npm remove typescript

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Become a contributor for community

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

DigitalOcean Documentation

Full documentation for every DigitalOcean product.

Resources for startups and SMBs

The Wave has everything you need to know about building a business, from raising funding to marketing your product.

Get our newsletter

Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.

New accounts only. By submitting your email you agree to our Privacy Policy

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.