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
}
}
```
8 lines
170 B
JSON
8 lines
170 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "../built/e2e",
|
|
"types": ["jasmine"],
|
|
// TODO(alexeagle): was required for Protractor 4.0.11
|
|
"skipLibCheck": true
|
|
}
|
|
} |