Fix build
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma 2020-10-02 17:33:25 +02:00
parent 0b0bb4d598
commit 388a2faf84
2 changed files with 11 additions and 4 deletions

View File

@ -249,7 +249,7 @@
"prefix": "fm-map3d", "prefix": "fm-map3d",
"architect": { "architect": {
"build": { "build": {
"builder": "@angular-devkit/build-angular:ng-packagr", "builder": "@angular-devkit/build-angular:ng-packagr:build",
"options": { "options": {
"tsConfig": "projects/common-map3d/tsconfig.lib.json", "tsConfig": "projects/common-map3d/tsconfig.lib.json",
"project": "projects/common-map3d/ng-package.json" "project": "projects/common-map3d/ng-package.json"

View File

@ -1,12 +1,16 @@
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{ {
"extends": "../../tsconfig.json", "extends": "../../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"outDir": "../../out-tsc/lib", "outDir": "../../out-tsc/lib",
"target": "es2015", "target": "es2015",
"module": "es2015",
"moduleResolution": "node",
"declaration": true, "declaration": true,
"declarationMap": true, "sourceMap": true,
"inlineSources": true, "inlineSources": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"types": [], "types": [],
"lib": [ "lib": [
"dom", "dom",
@ -16,7 +20,10 @@
"angularCompilerOptions": { "angularCompilerOptions": {
"skipTemplateCodegen": true, "skipTemplateCodegen": true,
"strictMetadataEmit": true, "strictMetadataEmit": true,
"enableResourceInlining": true "fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"enableResourceInlining": true,
"enableIvy": false
}, },
"exclude": [ "exclude": [
"src/test.ts", "src/test.ts",