Skip to content

Commit

Permalink
chore: migration to angular 12
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-marie broca committed Oct 29, 2021
1 parent 4c7a621 commit 180a010
Show file tree
Hide file tree
Showing 8 changed files with 28,718 additions and 523 deletions.
44 changes: 18 additions & 26 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,20 @@
"main": "src/main.ts",
"tsConfig": "src/tsconfig.app.json",
"polyfills": "src/polyfills.ts",
"assets": [
"src/assets",
"src/favicon.ico"
],
"allowedCommonJsDependencies": ["xml2js"],
"assets": ["src/assets", "src/favicon.ico"],
"styles": [
"src/_styles.scss",
"node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css"
],
"scripts": []
"scripts": [],
"aot": false,
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -43,7 +48,8 @@
}
]
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down Expand Up @@ -74,23 +80,14 @@
"node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css",
"src/_styles.scss"
],
"assets": [
"src/assets",
"src/favicon.ico"
]
"assets": ["src/assets", "src/favicon.ico"]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**",
"**/e2e/**"
]
"tsConfig": ["src/tsconfig.app.json", "src/tsconfig.spec.json"],
"exclude": ["**/node_modules/**", "**/e2e/**"]
}
}
}
Expand All @@ -110,13 +107,8 @@
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"e2e/tsconfig.e2e.json"
],
"exclude": [
"**/node_modules/**",
"**/e2e/**"
]
"tsConfig": ["e2e/tsconfig.e2e.json"],
"exclude": ["**/node_modules/**", "**/e2e/**"]
}
}
}
Expand All @@ -135,4 +127,4 @@
"cli": {
"analytics": false
}
}
}
Loading

0 comments on commit 180a010

Please sign in to comment.