Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8230592
Merge pull request #1 from OkomoJacob/ts_basics
OkomoJacob Nov 1, 2022
7586025
Merge pull request #2 from OkomoJacob/ts_basics
OkomoJacob Nov 4, 2022
3f51fd6
Wraapping up OOP basics in TS, :zap:
OkomoJacob Nov 5, 2022
df1c84e
Wraapping up OOP basics in TS, :zap:
OkomoJacob Nov 5, 2022
40089b1
Wraapping up OOP basics in TS, :zap:
OkomoJacob Nov 5, 2022
0147987
Wraapping up OOP basics in TS, :zap:
OkomoJacob Nov 5, 2022
b831817
Getting started :tada: with components & services, :zap:
OkomoJacob Nov 5, 2022
af834b0
Getting started :tada: with components & services, :zap:
OkomoJacob Nov 5, 2022
3bbf89f
Getting started :tada: with components & services, :zap:
OkomoJacob Nov 5, 2022
112e1b8
Getting started :tada: with components & services, :zap:
OkomoJacob Nov 5, 2022
d5246b4
Getting started :tada: with components & services, :zap:
OkomoJacob Nov 5, 2022
8fc4626
Getting started(even though badi sielewi) :tada: with components & se…
OkomoJacob Nov 5, 2022
2a3933f
Getting started :tada: with components & services, :zap: :fire:
OkomoJacob Nov 5, 2022
3741159
Getting started :tada: with components & services, :zap: :fire:, brow…
OkomoJacob Nov 5, 2022
edc56f8
Getting started :tada: with components & services, :zap: :fire:, brow…
OkomoJacob Nov 5, 2022
5ce9d92
Getting started :tada: with components & services, :zap: :fire:, brow…
OkomoJacob Nov 5, 2022
35b60b6
Getting started :tada: with components & services, :zap: :fire:
OkomoJacob Nov 5, 2022
dba8d1e
Getting started :tada: with components & services, :zap: :fire:
OkomoJacob Nov 5, 2022
d61bda9
Getting started :tada: with components & services, :zap: :fire:
OkomoJacob Nov 5, 2022
a01d9c7
Getting started :tada: with templates :books:, :zap: :fire:
OkomoJacob Nov 5, 2022
3c43979
Getting started :tada: with Karma test-runner :books:, :zap: :fire:
OkomoJacob Nov 5, 2022
503e1b0
Getting started :tada: with components & services, :zap: :fire:
OkomoJacob Nov 5, 2022
aa4df97
Getting started :tada: with components & services, :zap: :fire:
OkomoJacob Nov 5, 2022
f4b699a
Merge pull request #4 from OkomoJacob/ts_basics
OkomoJacob Apr 2, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,21 @@
"version": 1,
"newProjectRoot": "projects",
"projects": {
"angubasics": {
"ng-test": {
"projectType": "application",
"schematics": {},
"schematics": {
"@schematics/angular:application": {
"strict": true
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/angubasics",
"outputPath": "dist/ng-test",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
Expand Down Expand Up @@ -64,18 +68,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "angubasics:build:production"
"browserTarget": "ng-test:build:production"
},
"development": {
"browserTarget": "angubasics:build:development"
"browserTarget": "ng-test:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "angubasics:build"
"browserTarget": "ng-test:build"
}
},
"test": {
Expand All @@ -97,5 +101,6 @@
}
}
}
}
},
"defaultProject": "ng-test"
}
6 changes: 6 additions & 0 deletions classes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
"use strict";

exports.__esModule = true;
var point_module_1 = require("./point_module");
var newPoint = new point_module_1.NewPoint(68, 12.7);
newPoint.draw();
4 changes: 4 additions & 0 deletions classes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { NewPoint } from './point_module'

let newPoint = new NewPoint(68, 12.7);
newPoint.draw();
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = function (config) {
suppressAll: true // removes the duplicated traces
},
coverageReporter: {
dir: require('path').join(__dirname, './coverage/angubasics'),
dir: require('path').join(__dirname, './coverage/ng-test'),
subdir: '.',
reporters: [
{ type: 'html' },
Expand Down
Loading