2016-10-06 23:25:52 +01:00
|
|
|
// this tsconfig is used for protractor tests
|
|
|
|
// see _boilerplate/tsconfig.json for the the tsconfig used in examples
|
2015-08-03 17:45:58 -07:00
|
|
|
{
|
2015-09-09 14:20:43 -07:00
|
|
|
"compilerOptions": {
|
2016-10-06 23:25:52 +01:00
|
|
|
"target": "es6",
|
2016-05-02 23:09:54 -06:00
|
|
|
"module": "commonjs",
|
2015-12-10 09:40:54 -08:00
|
|
|
"moduleResolution": "node",
|
2015-09-09 14:20:43 -07:00
|
|
|
"sourceMap": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2015-12-10 09:40:54 -08:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"noImplicitAny": true,
|
2016-10-06 23:25:52 +01:00
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"protractor-helpers.ts"
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"*/e2e-spec.ts"
|
|
|
|
]
|
2016-10-12 04:44:49 -04:00
|
|
|
}
|