Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,18 @@ Import HammerJS on your app's module.
import 'hammerjs';
```

Finally, you need to add `hammerjs` to the `types` section of your `tsconfig.json` file:

```json
{
"compilerOptions": {
"types": [
"hammerjs"
]
}
}
```

## Configuring SystemJS
If your project is using SystemJS for module loading, you will need to add `@angular/material`
to the SystemJS configuration:
Expand Down