Files

25 lines
558 B
JSON
Raw Permalink Normal View History

2016-10-06 23:25:52 +01:00
// this tsconfig is used for protractor tests
2017-04-02 02:38:49 +08:00
// see _boilerplate/tsconfig.json for the tsconfig used in examples
{
"compilerOptions": {
2016-10-06 23:25:52 +01:00
"target": "es6",
2016-05-02 23:09:54 -06:00
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2016-11-21 02:28:37 +01:00
"lib": ["es2015", "dom"],
"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
}