Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 523 Bytes

Readme.md

File metadata and controls

14 lines (9 loc) · 523 Bytes

TypeScript starter kit

A bare-bones starter kit for typescript. My new-project-script repository is a convenient way to clone a repo, get rid of all the old history and have a shiny new repo to work in.

Chrome Extensions

When writing a chrome extension, or I suppose for the front end in general, the tsconfig.json will need adjustments:

    "module": "es6",
    "moduleResolution": "classic",

For node development in mid-2019, the defaults are fine.