build(aio): give intellisense to the examples

This commit is contained in:
Jesus Rodriguez 2017-04-15 23:09:25 +02:00 committed by Pete Bacon Darwin
parent eda2a7b2dc
commit 7433da546f
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
// this tsconfig is used to give intellisense to
// all the examples in this folder
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es2015", "dom"],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"typeRoots": [
"../../tools/examples/shared/node_modules/@types"
]
},
"include": [
"*/e2e-spec.ts"
]
}