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

Topconf DE '17 - Getting Started with TypeScript

Topconf DE '17 - Getting Started with TypeScript

Intro talk about TypeScript given at Topconf Düsseldorf 2017 (topconf.com/conference/duesseldorf-2017/)

Dominik Kundel

October 05, 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 | #topconfDE @topconfDE
  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 | #topconfDE @topconfDE
  3. tsconfig.json { "compilerOptions": { "jsx": "react", "noImplicitAny": true, "noImplicitThis": true,

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