22 lines
510 B
JSON
22 lines
510 B
JSON
|
// 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"
|
||
|
]
|
||
|
}
|