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

EnterJS '17 - Los Geht's mit TypeScript

EnterJS '17 - Los Geht's mit TypeScript

[GERMAN]
Einführung in TypeScript gehalten bei EnterJS.

Dominik Kundel

June 21, 2017
Tweet

More Decks by Dominik Kundel

Other Decks in Programming

Transcript

  1. WAS BIETET TYPESCRIPT? ▸ Compiler der TypeScript zu JavaScript kompiliert

    ▸ npm install -g typescript ▸ Erweitert JavaScript mit Typ-Annotationen ▸ Type-Checking während der Compile-Time Dominik Kundel | @dkundel | #enterjs
  2. tsconfig.json { "compilerOptions": { "jsx": "react", "noImplicitAny": true, "noImplicitThis": true,

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