Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Last active November 18, 2016 16:28
Show Gist options
  • Select an option

  • Save ajcrites/ce5eb60fe9d85f5a88d0691b10218d7b to your computer and use it in GitHub Desktop.

Select an option

Save ajcrites/ce5eb60fe9d85f5a88d0691b10218d7b to your computer and use it in GitHub Desktop.
import { NgModule } from '@angular/core';
import { Paho } from 'ng2-mqtt';
@NgModule()
export class AppModule { }
{
"dependencies": {
"@angular/common": "^2.2.0",
"@angular/compiler": "^2.2.0",
"@angular/compiler-cli": "^2.2.1",
"@angular/core": "^2.2.0",
"@angular/platform-browser": "^2.2.0",
"@angular/platform-browser-dynamic": "^2.2.0",
"@types/aws4": "^1.5.0",
"angular2-progressbar": "^0.5.1",
"aws4": "^1.5.0",
"core-js": "^2.4.1",
"json-loader": "^0.5.4",
"ng2-mqtt": "^0.1.0",
"querystring-browser": "^1.0.4",
"rxjs": "^5.0.0-rc.2",
"zone.js": "^0.6.26"
},
"devDependencies": {
"@ngtools/webpack": "^1.1.7",
"@types/chai": "^3.4.34",
"@types/core-js": "^0.9.34",
"@types/node": "^6.0.46",
"angular2-template-loader": "^0.6.0",
"copy-webpack-plugin": "^4.0.0",
"css-loader": "^0.26.0",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.24.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"ts-loader": "^1.2.1",
"typescript": "^2.0.10",
"webpack": "2.1.0-beta.27",
"webpack-dev-server": "2.1.0-beta.11"
}
}
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"declaration": false,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"pretty": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitUseStrict": false,
"noFallthroughCasesInSwitch": true,
"outDir": "./ngfactory",
"rootDir": "./app",
"types": [
"core-js",
"node"
]
},
"angularCompilerOptions": {
"debug": true
},
"compileOnSave": false,
"files": [
"app/app.module.ts"
],
"exclude": [
"node_modules",
"dist"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment