Skip to content

Commit 19b0cf6

Browse files
committed
chore: migrate to Vite builder
1 parent a0c80bf commit 19b0cf6

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

angular.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"projectType": "library",
1010
"architect": {
1111
"build": {
12-
"builder": "@angular-devkit/build-angular:browser",
12+
"builder": "@angular-devkit/build-angular:application",
1313
"options": {
1414
"outputPath": "website",
1515
"index": "src/index.html",
16-
"main": "src/main.ts",
16+
"browser": "src/main.ts",
1717
"polyfills": ["zone.js"],
1818
"tsConfig": "tsconfig.app.json",
1919
"allowedCommonJsDependencies": ["@fnando/sparkline", "stream"],
@@ -43,9 +43,7 @@
4343
],
4444
"styles": ["node_modules/@ng-select/ng-select/themes/default.theme.css", "src/styles.scss"],
4545
"scripts": ["node_modules/bootstrap/dist/js/bootstrap.min.js"],
46-
"vendorChunk": true,
4746
"extractLicenses": false,
48-
"buildOptimizer": false,
4947
"sourceMap": true,
5048
"optimization": false,
5149
"namedChunks": true
@@ -80,7 +78,6 @@
8078
"namedChunks": false,
8179
"aot": false,
8280
"extractLicenses": true,
83-
"vendorChunk": false,
8481
"fileReplacements": [
8582
{
8683
"replace": "src/environments/environment.ts",

tsconfig.json

-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,8 @@
1010
"noUnusedParameters": false,
1111
"noUnusedLocals": false,
1212
"noImplicitReturns": true,
13-
"emitDecoratorMetadata": true,
1413
"esModuleInterop": true,
1514
"experimentalDecorators": true,
16-
"isolatedModules": true,
1715
"target": "ES2022",
1816
"typeRoots": ["node_modules/@types"],
1917
"lib": ["es2022", "dom"],

0 commit comments

Comments
 (0)