project update

This commit is contained in:
wagonsoftware 2022-10-21 21:07:30 +03:00
parent f3e4dfe005
commit 6352b9fc11
4 changed files with 659 additions and 1 deletions

View File

@ -116,6 +116,42 @@
} }
} }
} }
},
"ui": {
"projectType": "library",
"root": "projects/ui",
"sourceRoot": "projects/ui/src",
"prefix": "skirda",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "projects/ui/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "projects/ui/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/ui/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/ui/src/test.ts",
"tsConfig": "projects/ui/tsconfig.spec.json",
"karmaConfig": "projects/ui/karma.conf.js"
}
}
},
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
}
} }
}, },
"cli": { "cli": {

614
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -26,6 +26,7 @@
"@taiga-ui/styles": "^3.6.0", "@taiga-ui/styles": "^3.6.0",
"@tinkoff/ng-dompurify": "3.0.0", "@tinkoff/ng-dompurify": "3.0.0",
"dompurify": "2.2.9", "dompurify": "2.2.9",
"fast-average-color": "^9.1.1",
"rxjs": "~7.5.0", "rxjs": "~7.5.0",
"tslib": "^2.3.0", "tslib": "^2.3.0",
"zone.js": "~0.11.4" "zone.js": "~0.11.4"
@ -43,6 +44,7 @@
"karma-coverage": "~2.2.0", "karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0", "karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0", "karma-jasmine-html-reporter": "~2.0.0",
"ng-packagr": "^14.1.0",
"typescript": "~4.7.2" "typescript": "~4.7.2"
} }
} }

View File

@ -14,6 +14,7 @@
"declaration": false, "declaration": false,
"downlevelIteration": true, "downlevelIteration": true,
"experimentalDecorators": true, "experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "node", "moduleResolution": "node",
"importHelpers": true, "importHelpers": true,
"target": "es2020", "target": "es2020",
@ -21,7 +22,12 @@
"lib": [ "lib": [
"es2020", "es2020",
"dom" "dom"
] ],
"paths": {
"ui": [
"dist/ui"
]
}
}, },
"angularCompilerOptions": { "angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false, "enableI18nLegacyMessageIdFormat": false,