21 lines
475 B
JSON
21 lines
475 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,
|
|
"experimentalDecorators": true,
|
|
"lib": ["es2015", "dom"],
|
|
"noImplicitAny": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"typeRoots": [
|
|
"../../tools/examples/shared/node_modules/@types"
|
|
]
|
|
},
|
|
"include": [
|
|
"*/e2e-spec.ts"
|
|
]
|
|
}
|