Another fixes for aca-playwright-shared (#4100)

* Another fixes for aca-playwright-shared

* Add aca-playwright-shared to the build

* Small fix
This commit is contained in:
MichalKinas
2024-09-04 19:39:15 +02:00
committed by GitHub
parent 96df46a32a
commit 9ca398ddcf
7 changed files with 10 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
{
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
"dest": "../../dist/@alfresco/aca-playwright-shared",
"lib": {
"entryFile": "src/public-api.ts"

View File

@@ -1,9 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/aca-playwright-testing",
"target": "es2015",
"module": "es2015",
"outDir": "../../out-tsc/lib",
"target": "es2020",
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
@@ -12,7 +11,7 @@
"experimentalDecorators": true,
"importHelpers": true,
"types": [],
"lib": ["dom", "es2018"]
"lib": ["dom", "es2020"]
},
"angularCompilerOptions": {
"skipTemplateCodegen": true,
@@ -21,5 +20,5 @@
"strictInjectionParameters": true,
"enableResourceInlining": true
},
"exclude": ["node_modules", "src/test.ts", "**/*.spec.ts"]
"exclude": ["test.ts", "**/*.spec.ts"]
}