Upgrade to Pro — share decks privately, control downloads, hide ads and more …

FrontEnd Con '17 - Getting Started with TypeScript

FrontEnd Con '17 - Getting Started with TypeScript

Talk given at FrontEnd Con 2017 (http://frontend-con.io)

Avatar for Dominik Kundel

Dominik Kundel

September 22, 2017
Tweet

More Decks by Dominik Kundel

Other Decks in Programming

Transcript

  1. About Me Developer Evangelist at Get in touch with me!

    @dkundel [email protected] github/dkundel Dominik Kundel | @dkundel | #frontendCon2017
  2. What Does TypeScript Offer? ▸ Compiler that converts TypeScript to

    JavaScript ▸ npm install -g typescript ▸ Extends JavaScript with a set of type annotations ▸ Type checking during compiling Dominik Kundel | @dkundel | #frontendCon2017
  3. tsconfig.json { "compilerOptions": { "jsx": "react", "noImplicitAny": true, "noImplicitThis": true,

    "sourceMap": true, "inlineSourceMap": true } } Dominik Kundel | @dkundel | #frontendCon2017