7a352ddfbc
* starting UtilService refactor * pre find-replace angular.module('quay') => angular.module('QuayModule') * successfully switched to ng-metadata for backported Angular2 API * working with parent component reference in child * fixing @Output to use EventEmitter * fixed @Output events for custom git trigger * more fixes * refactored QuayPages module for backwards-compatibility * reinitialized test.db * use minified libraries * replaced references for angular-ts-decorators * fixed ng-show
43 lines
879 B
JavaScript
43 lines
879 B
JavaScript
var webpack = require('webpack');
|
|
var path = require("path");
|
|
|
|
var config = {
|
|
entry: "./static/js/main.ts",
|
|
output: {
|
|
path: path.resolve(__dirname, "static/build"),
|
|
filename: "bundle.js"
|
|
},
|
|
resolve: {
|
|
extensions: [".ts", ".tsx", ".js", ".scss"],
|
|
alias: {
|
|
sass: path.resolve(__dirname, 'static/css/directives/components/pages/')
|
|
}
|
|
},
|
|
// Use window.angular to maintain compatibility with non-Webpack components
|
|
externals: {
|
|
angular: "angular",
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: [
|
|
"ts-loader",
|
|
],
|
|
exclude: /node_modules/
|
|
},
|
|
{
|
|
test: /\.scss$/,
|
|
use: [
|
|
"style-loader",
|
|
"css-loader",
|
|
"sass-loader",
|
|
],
|
|
exclude: /node_modules/
|
|
},
|
|
]
|
|
},
|
|
devtool: "source-map",
|
|
};
|
|
|
|
module.exports = config;
|