Skip to content

Commit

Permalink
chore: use esbuild in my-angular-crasher
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyg603 committed Nov 13, 2023
1 parent a0afab2 commit 5e87af5
Show file tree
Hide file tree
Showing 7 changed files with 23,316 additions and 32,377 deletions.
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Symbols",
"request": "launch",
"runtimeArgs": ["run-script", "symbols"],
"runtimeExecutable": "npm",
"skipFiles": ["<node_internals>/**"],
"type": "node"
}
]
}
13 changes: 5 additions & 8 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
"schematics": {},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/my-angular-crasher",
"index": "projects/my-angular-crasher/src/index.html",
"main": "projects/my-angular-crasher/src/main.ts",
"browser": "projects/my-angular-crasher/src/main.ts",
"sourceMap": true,
"polyfills": "projects/my-angular-crasher/src/polyfills.ts",
"polyfills": ["projects/my-angular-crasher/src/polyfills.ts"],
"tsConfig": "projects/my-angular-crasher/tsconfig.app.json",
"assets": [
"projects/my-angular-crasher/src/favicon.ico",
Expand All @@ -27,13 +27,12 @@
"projects/my-angular-crasher/src/styles.css"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"optimization": false,
"namedChunks": true
},
"configurations": {
"development": {},
"production": {
"budgets": [
{
Expand All @@ -51,9 +50,7 @@
"outputHashing": "all",
"sourceMap": true,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
"extractLicenses": true
}
}
},
Expand Down
Loading

0 comments on commit 5e87af5

Please sign in to comment.