blob: 81d527b7636d751b42fa936cc4d32e395d79e01c [file] [log] [blame]
Michael Landoed64b5e2017-06-09 03:19:04 +03001{
2 "compilerOptions": {
3 "baseUrl": ".",
4 "declaration": false,
5 "emitDecoratorMetadata": true,
6 "experimentalDecorators": true,
7 "allowJs": true,
8 "mapRoot": "./",
9 "module": "commonjs",
10 "moduleResolution": "node",
11 "outDir": "../dist/out-tsc",
12 "lib": [
13 "es6",
14 "dom"
15 ],
ys969316a9fce2020-01-19 13:50:02 +020016 "paths": {
17 "@angular/*": [
18 "../node_modules/@angular/*"
19 ]
20 },
Michael Landoed64b5e2017-06-09 03:19:04 +030021 "sourceMap": true,
22 "target": "es5",
23 "typeRoots": [
24 "../node_modules/@types",
25 "./typings"
26 ],
27 "types": [
Michael Landoed64b5e2017-06-09 03:19:04 +030028 "core-js",
ys969316a9fce2020-01-19 13:50:02 +020029 "node",
30 "jest"
Tal Gitelman51d50f02017-12-10 18:55:03 +020031 ],
32 "forceConsistentCasingInFileNames": true
Michael Landoed64b5e2017-06-09 03:19:04 +030033 },
34 "exclude": [
Michael Landoed64b5e2017-06-09 03:19:04 +030035 ]
36}