dynamicbible/src/angular.json

184 lines
5.0 KiB
JSON
Raw Normal View History

{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"dynamicbible": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
2024-02-29 15:21:26 +00:00
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/dynamicbible",
"index": "src/index.html",
2024-02-29 15:21:26 +00:00
"polyfills": [
"src/polyfills.ts"
],
"tsConfig": "tsconfig.app.json",
2024-02-28 00:53:24 +00:00
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
"scripts": [
"node_modules/marked/marked.min.js"
],
2024-02-29 15:21:26 +00:00
"stylePreprocessorOptions": {
"includePaths": [
"node_modules/"
]
},
"allowedCommonJsDependencies": [
"firebase",
"@firebase/app",
"@firebase/auth",
"@firebase/database",
"@firebase/util",
"@firebase/component"
2024-02-28 00:53:24 +00:00
],
"extractLicenses": false,
"sourceMap": true,
"optimization": false,
2024-02-29 15:21:26 +00:00
"namedChunks": true,
"browser": "src/main.ts"
},
"configurations": {
"production": {
"fileReplacements": [
{
"replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts"
}
],
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb",
"maximumError": "10kb"
}
]
}
2024-02-28 00:53:24 +00:00
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
2024-02-29 21:33:55 +00:00
"options": {
"buildTarget": "dynamicbible:build"
},
"configurations": {
2024-02-29 15:21:26 +00:00
"production": {}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
2024-02-29 15:21:26 +00:00
"options": {}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "src/test.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
2024-02-28 00:53:24 +00:00
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.scss"
],
2024-02-28 00:53:24 +00:00
"scripts": []
}
},
"e2e": {
2024-02-29 15:21:26 +00:00
"builder": "@cypress/schematic:cypress",
"options": {
2024-02-29 15:21:26 +00:00
"devServerTarget": "dynamicbible:serve",
"watch": true,
"headless": false
},
"configurations": {
"production": {
"devServerTarget": "dynamicbible:serve:production"
}
}
2020-08-07 10:10:06 -04:00
},
"deploy": {
"builder": "@angular/fire:deploy",
"options": {}
2024-02-28 00:53:24 +00:00
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
2024-02-29 15:21:26 +00:00
},
"cypress-run": {
"builder": "@cypress/schematic:cypress",
"options": {
"devServerTarget": "dynamicbible:serve"
},
"configurations": {
"production": {
"devServerTarget": "dynamicbible:serve:production"
}
}
},
"cypress-open": {
"builder": "@cypress/schematic:cypress",
"options": {
"watch": true,
"headless": false
}
},
"ct": {
"builder": "@cypress/schematic:cypress",
"options": {
"devServerTarget": "dynamicbible:serve",
"watch": true,
"headless": false,
"testingType": "component"
},
"configurations": {
"development": {
"devServerTarget": "dynamicbible:serve:development"
}
}
}
}
2020-08-07 10:10:06 -04:00
}
},
2024-02-28 00:53:24 +00:00
"cli": {
"analytics": false,
"schematicCollections": [
2024-02-29 15:21:26 +00:00
"@cypress/schematic",
"@angular-eslint/schematics",
2024-02-28 00:53:24 +00:00
"@angular-eslint/schematics",
2024-02-29 15:21:26 +00:00
"@schematics/angular"
2024-02-28 00:53:24 +00:00
]
}
2024-02-29 15:21:26 +00:00
}