diff --git a/ponyracer/.vscode/extensions.json b/ponyracer/.vscode/extensions.json new file mode 100644 index 0000000..77b3745 --- /dev/null +++ b/ponyracer/.vscode/extensions.json @@ -0,0 +1,4 @@ +{ + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846 + "recommendations": ["angular.ng-template"] +} diff --git a/ponyracer/.vscode/launch.json b/ponyracer/.vscode/launch.json new file mode 100644 index 0000000..740e35a --- /dev/null +++ b/ponyracer/.vscode/launch.json @@ -0,0 +1,20 @@ +{ + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "ng serve", + "type": "pwa-chrome", + "request": "launch", + "preLaunchTask": "npm: start", + "url": "http://localhost:4200/" + }, + { + "name": "ng test", + "type": "chrome", + "request": "launch", + "preLaunchTask": "npm: test", + "url": "http://localhost:9876/debug.html" + } + ] +} diff --git a/ponyracer/.vscode/tasks.json b/ponyracer/.vscode/tasks.json new file mode 100644 index 0000000..a298b5b --- /dev/null +++ b/ponyracer/.vscode/tasks.json @@ -0,0 +1,42 @@ +{ + // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558 + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "start", + "isBackground": true, + "problemMatcher": { + "owner": "typescript", + "pattern": "$tsc", + "background": { + "activeOnStart": true, + "beginsPattern": { + "regexp": "(.*?)" + }, + "endsPattern": { + "regexp": "bundle generation complete" + } + } + } + }, + { + "type": "npm", + "script": "test", + "isBackground": true, + "problemMatcher": { + "owner": "typescript", + "pattern": "$tsc", + "background": { + "activeOnStart": true, + "beginsPattern": { + "regexp": "(.*?)" + }, + "endsPattern": { + "regexp": "bundle generation complete" + } + } + } + } + ] +} diff --git a/ponyracer/README.md b/ponyracer/README.md index 916a1e4..3a6fc11 100644 --- a/ponyracer/README.md +++ b/ponyracer/README.md @@ -1,6 +1,6 @@ # Ponyracer -This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.1.0-next.2. +This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.1.0-next.3. ## Development server diff --git a/ponyracer/package.json b/ponyracer/package.json index c2cdd39..a698888 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -23,8 +23,8 @@ "zone.js": "~0.11.4" }, "devDependencies": { - "@angular-devkit/build-angular": "~13.1.0-next.2", - "@angular/cli": "~13.1.0-next.2", + "@angular-devkit/build-angular": "~13.1.0-next.3", + "@angular/cli": "~13.1.0-next.3", "@angular/compiler-cli": "~13.0.0", "@types/jasmine": "~3.10.0", "@types/node": "^12.11.1",