I want to upgrade an tsc@1.8 project to tsc@2 and in the process ditch typings from my tool chain.
typings
It\'s not a problem for the common depencies as these dep
This thread pointed me in the right direction, as I have to add the types to the tsconfig.json:
tsconfig.json
{ "compilerOptions": { "target": "ES6", "types": ["node", "mocha", "chai"], ... }
The types option also have a verbose documentation.