2017-10-29 03:14:14 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2018-01-08 22:48:05 +01:00
|
|
|
"moduleResolution": "node",
|
2017-10-29 03:14:14 +01:00
|
|
|
"noImplicitAny": true,
|
2018-04-04 04:14:54 +02:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2018-01-08 22:48:05 +01:00
|
|
|
"module": "es6",
|
2017-10-29 03:14:14 +01:00
|
|
|
"target": "ES2016",
|
|
|
|
"allowJs": true,
|
2017-11-17 22:33:58 +01:00
|
|
|
"sourceMap": true,
|
2018-01-09 20:26:20 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
2021-06-07 19:25:37 +02:00
|
|
|
"jslib-common/*": [
|
|
|
|
"jslib/common/src/*"
|
2018-09-13 18:04:07 +02:00
|
|
|
],
|
2021-06-07 19:25:37 +02:00
|
|
|
"jslib-angular/*": [
|
|
|
|
"jslib/angular/src/*"
|
2018-09-13 18:04:07 +02:00
|
|
|
]
|
2018-01-09 20:26:20 +01:00
|
|
|
}
|
2017-10-29 03:14:14 +01:00
|
|
|
},
|
2018-09-13 18:04:07 +02:00
|
|
|
"angularCompilerOptions": {
|
2021-05-21 04:44:25 +02:00
|
|
|
"preserveWhitespaces": true
|
2018-09-13 18:04:07 +02:00
|
|
|
},
|
2021-06-07 19:25:37 +02:00
|
|
|
"include": [
|
|
|
|
"src"
|
2017-10-29 03:14:14 +01:00
|
|
|
]
|
|
|
|
}
|