bitovi / academy

Everything we know about frontend, backend, UX, and Devops consulting and management.
https://www.bitovi.com/academy/
14 stars 3 forks source link

TypeScript: Notes #33

Open justinbmeyer opened 5 years ago

justinbmeyer commented 5 years ago

fix problem with unused imports

The IDE section lets people know about tsconfig.json.

{
    "compilerOptions": {
        "target": "es5",
        "module": "commonjs",
        "sourceMap": true,
        "removeComments": true
    }
}

Some of the tests are a bit sloppy and will break with this.

explain modules

We need a modules training.

justinbmeyer commented 5 years ago

Types

justinbmeyer commented 5 years ago

Functions

justinbmeyer commented 5 years ago

Classes

nlundquist commented 5 years ago

Why Typescript