mirror of
https://github.com/zitadel/zitadel
synced 2024-11-21 16:30:53 +00:00
131 lines
3.9 KiB
JSON
131 lines
3.9 KiB
JSON
{
|
|
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
"version": 1,
|
|
"newProjectRoot": "projects",
|
|
"projects": {
|
|
"console": {
|
|
"projectType": "application",
|
|
"schematics": {
|
|
"@schematics/angular:component": {
|
|
"style": "scss"
|
|
}
|
|
},
|
|
"root": "",
|
|
"sourceRoot": "src",
|
|
"prefix": "cnsl",
|
|
"architect": {
|
|
"build": {
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
"options": {
|
|
"outputPath": "dist/console",
|
|
"index": "src/index.html",
|
|
"main": "src/main.ts",
|
|
"polyfills": ["zone.js"],
|
|
"tsConfig": "tsconfig.app.json",
|
|
"inlineStyleLanguage": "scss",
|
|
"assets": [
|
|
"src/favicon.ico",
|
|
"src/assets",
|
|
"src/manifest.webmanifest",
|
|
{ "glob": "**/*", "input": "../docs/static/img/tech", "output": "assets/docs/img/tech" }
|
|
],
|
|
"styles": ["src/styles.scss"],
|
|
"scripts": ["./node_modules/tinycolor2/dist/tinycolor-min.js"],
|
|
"stylePreprocessorOptions": {
|
|
"includePaths": ["node_modules"]
|
|
},
|
|
"allowedCommonJsDependencies": [
|
|
"opentype.js",
|
|
"fast-sha256",
|
|
"buffer",
|
|
"moment",
|
|
"grpc-web",
|
|
"@angular/common/locales/de",
|
|
"codemirror/mode/javascript/javascript",
|
|
"codemirror/mode/xml/xml",
|
|
"file-saver",
|
|
"qrcode",
|
|
"codemirror"
|
|
]
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"optimization": {
|
|
"fonts": {
|
|
"inline": false
|
|
},
|
|
"styles": {
|
|
"inlineCritical": false,
|
|
"minify": false
|
|
}
|
|
},
|
|
"budgets": [
|
|
{
|
|
"type": "initial",
|
|
"maximumWarning": "8mb",
|
|
"maximumError": "9mb"
|
|
},
|
|
{
|
|
"type": "anyComponentStyle",
|
|
"maximumWarning": "6kb",
|
|
"maximumError": "10kb"
|
|
}
|
|
],
|
|
"outputHashing": "all"
|
|
},
|
|
"development": {
|
|
"buildOptimizer": false,
|
|
"optimization": false,
|
|
"vendorChunk": true,
|
|
"extractLicenses": false,
|
|
"sourceMap": true,
|
|
"namedChunks": true
|
|
}
|
|
},
|
|
"defaultConfiguration": "development"
|
|
},
|
|
"serve": {
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
|
|
"configurations": {
|
|
"production": {
|
|
"browserTarget": "console:build:production"
|
|
},
|
|
"development": {
|
|
"browserTarget": "console:build:development"
|
|
}
|
|
},
|
|
"defaultConfiguration": "development"
|
|
},
|
|
"extract-i18n": {
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
"options": {
|
|
"browserTarget": "console:build"
|
|
}
|
|
},
|
|
"test": {
|
|
"builder": "@angular-devkit/build-angular:karma",
|
|
"options": {
|
|
"polyfills": ["zone.js", "zone.js/testing"],
|
|
"tsConfig": "tsconfig.spec.json",
|
|
"inlineStyleLanguage": "scss",
|
|
"assets": ["src/favicon.ico", "src/assets"],
|
|
"styles": ["src/styles.scss"],
|
|
"scripts": []
|
|
}
|
|
},
|
|
"lint": {
|
|
"builder": "@angular-eslint/builder:lint",
|
|
"options": {
|
|
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"cli": {
|
|
"analytics": false,
|
|
"schematicCollections": ["@angular-eslint/schematics"]
|
|
}
|
|
}
|