This environment provides basic setup for TypeScript under Saby such as recommended version, preferred configuration file and this instruction.
Firstly. Your project must follow npm architecture. You need to Node.js being installed on your computer. The easiest first step to start is execute this command:
npm initYou have to answer several simple questions. After that you'll have the new file package.json in your project.
Secondly. Add dependency in your package.json file at dependencies section like this:
"devDependencies": {
"saby-typescript": "git+https://github.com:saby/TypeScript.git#rc-x.x.xxx"
}You should replace x.x.xxx with actual version. For example, 3.18.700.
Thirdly. Also add a pair of scripts at scripts section like this:
"scripts": {
"prepare": "saby-typescript --install",
"compile": "tsc"
}It's almost ready now!
Fourthly. Just install your package dependencies using this command:
npm installYou've got new file tsconfig.json in your project as a result of previous command execute. This file is necessary to compile your .ts files to .js files. You can find out more information about tsconfig.json on TypeScript site.
You need this file only for check that is your code compiles successfully. We strongly recommend do not change this file because your settings shouldn't be different with Saby's resources build tool which uses the same ones. In other words, you can make changes which add more restrictions but you can't make changes which add new features, experimental features or switch to another version of tslib.js file.
Let's do a simple test. Just create silly module test.ts, for example:
class Foo {
_foo: string = 'Foo';
}
export class Bar extends Foo {
_bar: string = 'Bar';
}Now it's simply to compile your project manually using command line:
npm run compileIt creates a new file test.js next to test.ts which is an AMD module:
define(["require", "exports", "tslib"], function (require, exports, tslib_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Foo = /** @class */ (function () {
function Foo() {
this._foo = 'Foo';
}
return Foo;
}());
var Bar = /** @class */ (function (_super) {
tslib_1.__extends(Bar, _super);
function Bar() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this._bar = 'Bar';
return _this;
}
return Bar;
}(Foo));
exports.Bar = Bar;
});Of course you can setup an IDE you prefer to your convenience. It allows you compile .ts files automatically every time you change them.
For example, if you use WebStorm IDE you can read its own developer's manual.
Please read the documentation about module resolution principles. Basically you have two strategies to use code from your dependencies with non-relative imports:
-
For 'classic strategy' you have to create a symlink to this module in the root of your project. Name of the link should be the same as the module folder in Saby project. For example, to import the same dependency saby-types, make a symlink to
node-modules/saby-typesfolder asTypesin the root of your project and then use code like this:import Record from 'Types/entity';
-
For 'Node strategy' just use the name of the dependent npm package. For example, if you depend on saby-types:
import Record from 'saby-types/entity';
Use slash directive amd-module:
/// <amd-module name="NameOf/Your/Amd/Module" />Compilator will put given module name into define() function for this module and everywhere this module is used for import in AMD representation.
Use import as usual:
import * as someAmdModule from 'NameOf/Some/Amd/Module';Or with directive with require():
import someAmdModule = require('NameOf/Some/Amd/Module');In common case this imported module will be like "black box" for TypeScript interpreter so you should define a type of it if you want to work well with it.
If you plan to create inherited class from imported AMD class you will possible have a problems with static class members. The inheritance chain with only TypeScript classes is preferred.
You can ask them in our community. Thank you!