2017-02-22 13:13:21 -05:00
|
|
|
// this tsconfig is used for protractor tests
|
2017-04-13 17:35:13 -04:00
|
|
|
// see boilerplate/tsconfig.json for the tsconfig used in examples
|
2017-02-22 13:13:21 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"sourceMap": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"lib": ["es2015", "dom"],
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
2017-04-13 17:35:13 -04:00
|
|
|
"../../../content/examples/*/e2e-spec.ts"
|
2017-02-22 13:13:21 -05:00
|
|
|
]
|
|
|
|
}
|