build(aio): give intellisense to the examples
This commit is contained in:
parent
eda2a7b2dc
commit
7433da546f
|
@ -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"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue