Skip to content

Commit

Permalink
add first app
Browse files Browse the repository at this point in the history
  • Loading branch information
wangzixi-diablo committed Oct 16, 2021
1 parent 435181f commit a9da6b7
Show file tree
Hide file tree
Showing 21 changed files with 11,461 additions and 2,232 deletions.
106 changes: 105 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,109 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
}
"jerry-first-app": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
},
"@schematics/angular:application": {
"strict": true
}
},
"root": "projects/jerry-first-app",
"sourceRoot": "projects/jerry-first-app/src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/jerry-first-app",
"index": "projects/jerry-first-app/src/index.html",
"main": "projects/jerry-first-app/src/main.ts",
"polyfills": "projects/jerry-first-app/src/polyfills.ts",
"tsConfig": "projects/jerry-first-app/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"projects/jerry-first-app/src/favicon.ico",
"projects/jerry-first-app/src/assets"
],
"styles": [
"projects/jerry-first-app/src/styles.scss"
],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"fileReplacements": [
{
"replace": "projects/jerry-first-app/src/environments/environment.ts",
"with": "projects/jerry-first-app/src/environments/environment.prod.ts"
}
],
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "jerry-first-app:build:production"
},
"development": {
"browserTarget": "jerry-first-app:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "jerry-first-app:build"
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"main": "projects/jerry-first-app/src/test.ts",
"polyfills": "projects/jerry-first-app/src/polyfills.ts",
"tsConfig": "projects/jerry-first-app/tsconfig.spec.json",
"karmaConfig": "projects/jerry-first-app/karma.conf.js",
"inlineStyleLanguage": "scss",
"assets": [
"projects/jerry-first-app/src/favicon.ico",
"projects/jerry-first-app/src/assets"
],
"styles": [
"projects/jerry-first-app/src/styles.scss"
],
"scripts": []
}
}
}
}
},
"defaultProject": "jerry-first-app"
}
Loading

0 comments on commit a9da6b7

Please sign in to comment.