Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
adrice727 committed Nov 6, 2017
1 parent 263bad3 commit 18f83b8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tsfmt.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
"insertSpaceBeforeFunctionParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": false,
"placeOpenBraceOnNewLineForControlBlocks": false
}
}
2 changes: 1 addition & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
],
"max-line-length": [true, 120]
}
}
}
11 changes: 6 additions & 5 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ module.exports = {
entry: './src/networkConnectivity/index.ts',
devtool: 'source-map',
module: {
loaders: [
{ test: /\.ts(x?)$/, loader: 'ts-loader' }
]
loaders: [{
test: /\.ts(x?)$/,
loader: 'ts-loader'
}]
},
resolve: {
extensions: ['.ts', '.js']
Expand All @@ -29,6 +30,6 @@ module.exports = {
ignoreCompilerErrors: true,
target: 'ES6',
media: './media'
}, './src')
}, './src')
]
};
};

0 comments on commit 18f83b8

Please sign in to comment.