Reputation: 1689
I am trying to wrap my head around typings and have the following questions
Upvotes: 10
Views: 9473
Reputation: 10833
npm install @types/my-favorite-library
, they are inserted by default into the @types/ folder. This is the default place for TypeScript to search for definition files."moduleResolution": "node",
in your tsconfig.json file. This is the default value unless you have your "module" set to "amd", "System" or "ES2015". Upvotes: 9