angular-linky
Version:
Angular pipe to find links in text input and turn them into html links
45 lines (40 loc) • 889 B
JavaScript
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
files: [
{ pattern: '*.spec.ts', watched: false }
],
preprocessors: {
'*.ts': ['webpack', 'sourcemap']
},
webpack: {
resolve: {
root: __dirname,
extensions: ['', '.ts', '.js', '.json'],
},
devtool: 'inline-source-map',
module: {
loaders: [
{
test: /\.ts$/,
loader: 'ts',
exclude: [/node_modules/]
}
]
},
stats: { colors: true, reasons: true },
debug: false
},
webpackServer: {
noInfo: true
},
reporters: ['spec'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: false,
browsers: ['PhantomJS'],
singleRun: true
});
}