RecipesChapter 9: The Standard Library and External Type Definitions

Adding Non-JS Modules to the Module Graph

Recipe 9.7 from The TypeScript Cookbook

{
  ...
  "compilerOptions": {
    ...
    "typeRoots": [
      "./node_modules/@types",
      "./@types"
    ],
    ...
  }
}
Open in TypeScript Playground →