ㅇtslint

This commit is contained in:
geek
2017-07-20 12:20:42 +09:00
parent 6a51403af1
commit 94fa662b96
6 changed files with 126 additions and 88 deletions

View File

@@ -9,7 +9,7 @@ module.exports = WebpackMerge(configBase, {
app: [
]
},
devtool: 'inline-source-map',
devServer: {
@@ -17,11 +17,18 @@ module.exports = WebpackMerge(configBase, {
inline: true,
historyApiFallback: true,
publicPath: '/', // match the output `publicPath`
contentBase: [__dirname + '/public', __dirname + '/dist', __dirname + '/node_modules'], // match the output path
host: '127.0.0.1',
port: 9091,
port: 9093,
stats: {
colors: true
},
watchOptions: {
// ignored: [ Path.resolve(__dirname, '../../node_modules/') ],
ignored: /node_modules/,
aggregateTimeout: 300,
poll: 1000
},
},
module: {