"myExt": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
},
"@schematics/angular:application": {
"strict": true
}
},
"root": "extensions/my-ext/app",
"sourceRoot": "extensions/my-ext/app/src",
"prefix": "app",
"architect": {
"build": {
"builder": "ngx-build-plus:browser",
"options": {
"namedChunks": true,
"commonChunk": false,
"sourceMap": true,
"aot": true,
"outputPath": "public/extensions/my-ext",
"index": "extensions/my-ext/app/src/index.html",
"main": "extensions/my-ext/app/src/main.ts",
"polyfills": "extensions/my-ext/app/src/polyfills.ts",
"tsConfig": "extensions/my-ext/app/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"extensions/my-ext/app/src/favicon.ico",
"extensions/my-ext/app/src/assets"
],
"styles": [
"extensions/my-ext/app/src/styles.scss"
],
"scripts": [],
"extraWebpackConfig": "extensions/my-ext/app/webpack.config.js",
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "extensions/my-ext/app/src/environments/environment.ts",
"with": "extensions/my-ext/app/src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
],
"extraWebpackConfig": "extensions/my-ext/app/webpack.prod.config.js"
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "ngx-build-plus:dev-server",
"configurations": {
"production": {
"browserTarget": "myExt:build:production",
"extraWebpackConfig": "extensions/my-ext/app/webpack.prod.config.js"
},
"development": {
"browserTarget": "myExt:build:development"
}
},
"defaultConfiguration": "development",
"options": {
"extraWebpackConfig": "extensions/my-ext/app/webpack.config.js",
"port": 3333
}
},
"extract-i18n": {
"builder": "ngx-build-plus:extract-i18n",
"options": {
"browserTarget": "myExt:build",
"extraWebpackConfig": "extensions/my-ext/app/webpack.config.js"
}
},
"test": {
"builder": "ngx-build-plus:karma",
"options": {
"main": "extensions/my-ext/app/src/test.ts",
"polyfills": "extensions/my-ext/app/src/polyfills.ts",
"tsConfig": "extensions/my-ext/app/tsconfig.spec.json",
"karmaConfig": "extensions/my-ext/app/karma.conf.js",
"inlineStyleLanguage": "scss",
"assets": [
"extensions/my-ext/app/src/favicon.ico",
"extensions/my-ext/app/src/assets"
],
"styles": [
"extensions/my-ext/app/src/styles.scss"
],
"scripts": [],
"extraWebpackConfig": "extensions/my-ext/app/webpack.config.js"
}
}
}
}