2024-04-23 05:33:38 -05:00
|
|
|
{
|
|
|
|
"name": "poc-state-plugin",
|
|
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
|
|
"projectType": "application",
|
|
|
|
"prefix": "app",
|
|
|
|
"sourceRoot": "apps/poc-state-plugin/src",
|
2024-05-07 03:28:40 -05:00
|
|
|
"tags": ["type:plugin"],
|
2024-04-23 05:33:38 -05:00
|
|
|
"targets": {
|
|
|
|
"build": {
|
|
|
|
"executor": "@angular-devkit/build-angular:application",
|
|
|
|
"outputs": ["{options.outputPath}"],
|
|
|
|
"options": {
|
|
|
|
"outputPath": "dist/apps/poc-state-plugin",
|
|
|
|
"index": "apps/poc-state-plugin/src/index.html",
|
|
|
|
"browser": "apps/poc-state-plugin/src/main.ts",
|
|
|
|
"polyfills": ["zone.js"],
|
|
|
|
"tsConfig": "apps/poc-state-plugin/tsconfig.app.json",
|
|
|
|
"assets": [
|
|
|
|
"apps/poc-state-plugin/src/favicon.ico",
|
|
|
|
"apps/poc-state-plugin/src/assets"
|
|
|
|
],
|
|
|
|
"styles": [
|
|
|
|
"libs/plugins-styles/src/lib/styles.css",
|
|
|
|
"apps/poc-state-plugin/src/styles.css"],
|
|
|
|
"scripts": [],
|
|
|
|
"optimization": {
|
|
|
|
"scripts": true,
|
|
|
|
"styles": true,
|
|
|
|
"fonts": false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"budgets": [
|
|
|
|
{
|
|
|
|
"type": "initial",
|
|
|
|
"maximumWarning": "500kb",
|
|
|
|
"maximumError": "1mb"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "anyComponentStyle",
|
|
|
|
"maximumWarning": "2kb",
|
|
|
|
"maximumError": "4kb"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"outputHashing": "all"
|
|
|
|
},
|
|
|
|
"development": {
|
|
|
|
"optimization": false,
|
|
|
|
"extractLicenses": false,
|
|
|
|
"sourceMap": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"defaultConfiguration": "production",
|
|
|
|
"dependsOn": ["buildPlugin"]
|
|
|
|
},
|
|
|
|
"serve": {
|
|
|
|
"executor": "@angular-devkit/build-angular:dev-server",
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"buildTarget": "poc-state-plugin:build:production"
|
|
|
|
},
|
|
|
|
"development": {
|
|
|
|
"buildTarget": "poc-state-plugin:build:development",
|
2024-05-30 08:02:56 -05:00
|
|
|
"port": 4301,
|
|
|
|
"host": "0.0.0.0"
|
2024-04-23 05:33:38 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"defaultConfiguration": "development"
|
|
|
|
},
|
|
|
|
"extract-i18n": {
|
|
|
|
"executor": "@angular-devkit/build-angular:extract-i18n",
|
|
|
|
"options": {
|
|
|
|
"buildTarget": "poc-state-plugin:build"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|