From 7433da546fb4605920c07021fd319263e85442a7 Mon Sep 17 00:00:00 2001 From: Jesus Rodriguez Date: Sat, 15 Apr 2017 23:09:25 +0200 Subject: [PATCH] build(aio): give intellisense to the examples --- aio/content/examples/tsconfig.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 aio/content/examples/tsconfig.json diff --git a/aio/content/examples/tsconfig.json b/aio/content/examples/tsconfig.json new file mode 100644 index 0000000000..5ad933f26e --- /dev/null +++ b/aio/content/examples/tsconfig.json @@ -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" + ] +}