1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Add bit-web to angular.json (#14798)

Bit-web needs to exist in angular.json for migrations to accurately capture those files.
This commit is contained in:
Oscar Hinton
2025-05-16 09:14:21 +02:00
committed by GitHub
parent e35882afc8
commit 323f0775fd

View File

@@ -6,6 +6,32 @@
"analytics": false "analytics": false
}, },
"projects": { "projects": {
"bit-web": {
"projectType": "application",
"schematics": {
"@schematics/angular:application": {
"strict": true
}
},
"root": "bitwarden_license/bit-web",
"sourceRoot": "bitwarden_license/bit-web/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/web",
"index": "apps/web/src/index.html",
"main": "bitwarden_license/bit-web/src/app/main.ts",
"polyfills": "apps/web/src/polyfills.ts",
"tsConfig": "bitwarden_license/bit-web/tsconfig.json",
"assets": ["apps/web/src/favicon.ico"],
"styles": [],
"scripts": []
}
}
}
},
"web": { "web": {
"projectType": "application", "projectType": "application",
"schematics": { "schematics": {
@@ -22,8 +48,8 @@
"options": { "options": {
"outputPath": "dist/web", "outputPath": "dist/web",
"index": "apps/web/src/index.html", "index": "apps/web/src/index.html",
"main": "apps/web/src/app/main.ts", "main": "apps/web/src/main.ts",
"polyfills": "apps/web/src/app/polyfills.ts", "polyfills": "apps/web/src/polyfills.ts",
"tsConfig": "apps/web/tsconfig.json", "tsConfig": "apps/web/tsconfig.json",
"assets": ["apps/web/src/favicon.ico"], "assets": ["apps/web/src/favicon.ico"],
"styles": [], "styles": [],