1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-02-26 17:23:15 +00:00
Files
directory-connector/angular.json
2026-02-26 11:29:30 -05:00

41 lines
1.0 KiB
JSON

{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "apps",
"cli": {
"analytics": false
},
"projects": {
"app": {
"projectType": "application",
"schematics": {
"@schematics/angular:application": {
"strict": true
}
},
"root": ".",
"sourceRoot": "src-gui",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular/build:application",
"options": {
"outputPath": {
"base": "dist"
},
"index": "src-gui/index.html",
"tsConfig": "tsconfig.json",
"assets": [
{ "glob": "**/*", "input": "src-gui/images", "output": "images" },
{ "glob": "**/*", "input": "src-gui/locales", "output": "locales" }
],
"styles": ["src-gui/scss/styles.scss"],
"scripts": [],
"browser": "src-gui/app/main.ts"
}
}
}
}
}
}