feat(callstatelib): add a callstate publishable lib

This commit is contained in:
thomas
2022-12-07 16:03:05 +01:00
parent 278e513538
commit 1ec45ce141
19 changed files with 1477 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
{
"name": "shared-ngrx-callstate-store",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "libs/shared/ngrx-callstate-store/src",
"prefix": "angular-challenges",
"targets": {
"build": {
"executor": "@nrwl/angular:package",
"outputs": ["{workspaceRoot}/dist/{projectRoot}"],
"options": {
"project": "libs/shared/ngrx-callstate-store/ng-package.json"
},
"configurations": {
"production": {
"tsConfig": "libs/shared/ngrx-callstate-store/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "libs/shared/ngrx-callstate-store/tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "libs/shared/ngrx-callstate-store/jest.config.ts",
"passWithNoTests": true
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": [
"libs/shared/ngrx-callstate-store/**/*.ts",
"libs/shared/ngrx-callstate-store/**/*.html"
]
}
}
},
"tags": []
}