TypeScript: Difference between revisions
Jump to navigation
Jump to search
Line 107: | Line 107: | ||
== References == | == References == | ||
* [https://developers.google.com/web/updates/2017/06/headless-karma-mocha-chai Automated testing with Headless Chrome] | |||
* [http://kangax.github.io/compat-table/es5/ Compatibility Tables for ES5] | * [http://kangax.github.io/compat-table/es5/ Compatibility Tables for ES5] | ||
* [http://kangax.github.io/compat-table/es6/ Compatibility Tables for ES6] | * [http://kangax.github.io/compat-table/es6/ Compatibility Tables for ES6] |
Revision as of 20:31, 9 June 2019
.gitignore
dist
node_modules
npm-debug.log
person.ts
namespace People {
export class Person {
constructor(private firstName: string, private lastName: string){
//TODO
}
}
}
nation.ts
namespace People {
export class Nation {
private population: Person[] = [];
add(person: Person): void {
this.population.push(person);
}
get count(): number {
return this.population.length;
}
}
}
app.ts
/// <reference path="person.ts" />
/// <reference path="nation.ts" />
import Person = People.Person;
import Nation = People.Nation;
const nation: Nation = new Nation();
nation.add(new Person('John', 'Lennon'));
console.log(nation.count);
tsconfig.json
{
"compilerOptions": {
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"outFile": "dist/app.js",
"target": "es5"
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}
gulpfile.js
var uglify = require('gulp-uglify');
var gulp = require('gulp');
var pump = require('pump');
gulp.task('compress', function (cb) {
pump([
gulp.src('dist/app.js'),
uglify(),
gulp.dest('dist/minify')
],
cb
);
});
gulp.task('default', ['compress']);
package.json
{
"scripts": {
"gulp": "./node_modules/.bin/gulp",
"compile": "./node_modules/.bin/tsc",
"start": "npm run compile && node dist/app.js && npm run gulp"
},
"devDependencies": {
"typescript": "^2.0.9",
"gulp-uglify": "^3.0.0",
"gulp": "^3.9.1",
"pump": "^3.0.0"
}
}
Build
npm install
npm start