resourcePath: 'src'
},
- /**
- * Webpack Development Server configuration
- * Description: The webpack-dev-server is a little node.js Express server.
- * The server emits information about the compilation state to the client,
- * which reacts to those events.
- *
- * See: https://webpack.github.io/docs/webpack-dev-server.html
- */
- devServer: {
- port: METADATA.port,
- host: METADATA.host,
- historyApiFallback: true,
- watchOptions: {
- aggregateTimeout: 300,
- poll: 1000
- },
- outputPath: helpers.root('dist')
- },
-
/*
* Include polyfills or mocks for various node stuff
* Description: Node configuration
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"angular-pipes": "^2.0.0",
+ "awesome-typescript-loader": "^0.17.0",
"blueimp-file-upload": "^9.12.1",
"bootstrap-loader": "^1.0.8",
"bootstrap-sass": "^3.3.6",
- "core-js": "^2.4.0",
- "es6-promise": "^3.0.2",
- "es6-shim": "^0.35.0",
- "jquery": "^2.2.3",
- "jquery.ui.widget": "^1.10.3",
- "ng2-bootstrap": "^1.0.16",
- "normalize.css": "^4.1.1",
- "reflect-metadata": "0.1.3",
- "rxjs": "5.0.0-beta.6",
- "systemjs": "0.19.27",
- "webtorrent": "^0.93.2",
- "zone.js": "0.6.12"
- },
- "devDependencies": {
- "awesome-typescript-loader": "^0.17.0",
- "codelyzer": "0.0.19",
"compression-webpack-plugin": "^0.3.1",
"copy-webpack-plugin": "^3.0.1",
+ "core-js": "^2.4.0",
"css-loader": "^0.23.1",
+ "es6-promise": "^3.0.2",
"es6-promise-loader": "^1.0.1",
- "exports-loader": "^0.6.3",
- "expose-loader": "^0.7.1",
+ "es6-shim": "^0.35.0",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.19.0",
- "imports-loader": "^0.6.5",
+ "jquery": "^2.2.3",
+ "jquery.ui.widget": "^1.10.3",
"json-loader": "^0.5.4",
+ "ng2-bootstrap": "^1.0.16",
"node-sass": "^3.7.0",
+ "normalize.css": "^4.1.1",
"raw-loader": "^0.5.1",
+ "reflect-metadata": "0.1.3",
"resolve-url-loader": "^1.4.3",
+ "rxjs": "5.0.0-beta.6",
"sass-loader": "^3.2.0",
"source-map-loader": "^0.1.5",
- "standard": "^7.0.1",
"style-loader": "^0.13.1",
- "systemjs-builder": "^0.15.16",
"ts-helpers": "^1.1.1",
- "ts-node": "^0.7.3",
"tslint": "^3.7.4",
"tslint-loader": "^2.1.4",
"typescript": "^1.8.10",
"typings": "^1.0.4",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
- "webpack-dev-server": "^1.14.1",
"webpack-md5-hash": "0.0.5",
- "webpack-merge": "^0.13.0"
+ "webpack-merge": "^0.13.0",
+ "webtorrent": "^0.93.2",
+ "zone.js": "0.6.12"
+ },
+ "devDependencies": {
+ "codelyzer": "0.0.19",
+ "standard": "^7.0.1"
},
"standard": {
"ignore": [
"bundles/"
]
}
-}
+}
\ No newline at end of file
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
- "removeComments": false,
- "noImplicitAny": false
+ "noImplicitAny": false,
+ "noEmitHelpers": true
+ },
+ "awesomeTypescriptLoaderOptions": {
+ "forkChecker": true
+ },
+ "compileOnSave": false,
+ "buildOnSave": false,
+ "atom": {
+ "rewriteTsconfig": true
},
"filesGlob": [
"**/*.ts",
"typings/main",
"typings/main.d.ts"
],
- "compileOnSave": false,
"files": [
"src/app/app.component.ts",
"src/app/friends/friend.service.ts",
"typings/globals/jquery/index.d.ts",
"typings/globals/node/index.d.ts",
"typings/index.d.ts"
- ],
- "atom": {
- "rewriteTsconfig": true
- }
+ ]
}