This commits makes the SystemJS-based docs examples more self-contained by ensuring the necessary WebDrivers are fetched before running the e2e tests. This is a follow-up to #41689. (See there for more discussion.) PR Close #41796
22 lines
501 B
JSON
22 lines
501 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
/* We need to keep the metadata to support JIT compilation. */
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"lib": [ "es2015", "dom" ],
|
|
"noImplicitAny": true,
|
|
"skipLibCheck": true,
|
|
"suppressImplicitAnyIndexErrors": true
|
|
},
|
|
"compileOnSave": true,
|
|
"exclude": [
|
|
"**/*-aot.ts",
|
|
"node_modules/",
|
|
"universal/"
|
|
]
|
|
}
|