diff --git a/.vscodeignore b/.vscodeignore index aeec3b2..4f7e94a 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -12,6 +12,7 @@ node_modules/** .gitignore webpack.config.js esbuild.js +.github/** #Ignore all webview files except build directory webview/src/** diff --git a/webview/angular.json b/webview/angular.json index 561ce18..3633405 100644 --- a/webview/angular.json +++ b/webview/angular.json @@ -3,7 +3,7 @@ "version": 1, "newProjectRoot": "projects", "projects": { - "hello-world": { + "scorpio-webview": { "projectType": "application", "schematics": { "@schematics/angular:application": { @@ -63,10 +63,10 @@ "builder": "@angular-devkit/build-angular:dev-server", "configurations": { "production": { - "browserTarget": "hello-world:build:production" + "buildTarget": "scorpio-webview:build:production" }, "development": { - "browserTarget": "hello-world:build:development" + "buildTarget": "scorpio-webview:build:development" } }, "defaultConfiguration": "development" @@ -74,11 +74,10 @@ "extract-i18n": { "builder": "@angular-devkit/build-angular:extract-i18n", "options": { - "browserTarget": "hello-world:build" + "buildTarget": "scorpio-webview:build" } } } } - }, - "defaultProject": "hello-world" -} \ No newline at end of file + } +}