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