Skip to content

Instantly share code, notes, and snippets.

@gildniy
Created December 12, 2017 03:03
Show Gist options
  • Save gildniy/6289e6730bb2723cc9a20d0ee6899fc2 to your computer and use it in GitHub Desktop.
Save gildniy/6289e6730bb2723cc9a20d0ee6899fc2 to your computer and use it in GitHub Desktop.
How to register typings in Angular 4, after they have been installed by:'npm install @types/{package}'
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"baseUrl": "./",
"module": "es2015",
"types": [
"jquery",
"semantic-ui",
"underscore",
"rx"
]
},
"exclude": [
"test.ts",
"**/*.spec.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment