The source map does not currently work with the transformer pipeline.
It will be re-enabled after TypeScript 2.4 is made the min version.
To revert to the former compiler, use the `disableTransformerPipeline` in
tsconfig.json:
```
{
"angularCompilerOptions": {
"disableTransformerPipeline": true
}
}
```
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
exports.config = {
|
|
specs: [
|
|
'../built/e2e/*.e2e-spec.js'
|
|
],
|
|
capabilities: {
|
|
browserName: 'chrome',
|
|
chromeOptions: {
|
|
args: ['--no-sandbox'],
|
|
binary: process.env.CHROME_BIN,
|
|
}
|
|
},
|
|
directConnect: true,
|
|
baseUrl: 'http://localhost:8080/',
|
|
framework: 'jasmine',
|
|
useAllAngular2AppRoots: true
|
|
};
|