1 | {
|
2 | "compilerOptions": {
|
3 | "target": "es5",
|
4 | "module": "commonjs",
|
5 | "moduleResolution": "node",
|
6 | "sourceMap": true,
|
7 | "inlineSources": true,
|
8 | "emitDecoratorMetadata": true,
|
9 | "experimentalDecorators": true,
|
10 | "lib": [ "es2015", "dom" ],
|
11 | "noImplicitAny": true,
|
12 | "suppressImplicitAnyIndexErrors": true,
|
13 | "declaration": true
|
14 | },
|
15 | "angularCompilerOptions": {
|
16 | "fullTemplateTypeCheck": true,
|
17 | "preserveWhiteSpaces": false,
|
18 | "strictMetadataEmit" : true
|
19 | },
|
20 | "exclude": [
|
21 | "node_modules",
|
22 | "example",
|
23 | "tests"
|
24 | ],
|
25 | "include": [
|
26 | "index.ts",
|
27 | "src/*"
|
28 | ]
|
29 | }
|