ACS-9039 fix for export aca-playwright-shared lib (#4317)

* ACS-9039 fix for export lib

* Update project.json to remove test config

* update package version

* update package dependancy

* Update package.json
This commit is contained in:
Akash Rathod
2025-01-02 11:37:28 +01:00
committed by GitHub
parent 92cf582b90
commit 5394088627
6 changed files with 16 additions and 8 deletions

View File

@@ -2,12 +2,18 @@
"name": "@alfresco/aca-playwright-shared",
"version": "0.0.1",
"license": "LGPL-3.0",
"dependencies": {
"tslib": "^2.0.0"
},
"scripts": {},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@alfresco/adf-content-services": "7.0.0-alpha.7-12408701331",
"@alfresco/adf-core": "7.0.0-alpha.7-12408701331",
"@alfresco/adf-extensions": "7.0.0-alpha.7-12408701331",
"@alfresco/eslint-plugin-eslint-angular": "7.0.0-alpha.7-12408701331",
"@alfresco/js-api": "8.0.0-alpha.7-12408701331",
"tslib": ">=2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Alfresco/alfresco-content-app.git"

View File

@@ -17,9 +17,7 @@
}
},
"defaultConfiguration": "production",
"outputs": [
"{workspaceRoot}/dist/@alfresco/aca-playwright-shared"
]
"outputs": ["{workspaceRoot}/dist/@alfresco/aca-playwright-shared"]
},
"lint": {
"executor": "@angular-eslint/builder:lint"

View File

@@ -2,7 +2,9 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/lib",
"declarationMap": true,
"target": "es2020",
"module": "es2015",
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
@@ -11,7 +13,8 @@
"experimentalDecorators": true,
"importHelpers": true,
"types": [],
"lib": ["dom", "es2020"]
"lib": ["dom", "es2018"],
"paths": {}
},
"angularCompilerOptions": {
"skipTemplateCodegen": true,