Экспорт класса как узла.модуль js в TypeScript

Я знаком с export ключевое слово в TypeScript и два канонических способа экспорта вещей из модулей узлов с помощью TypeScript (конечно, модули TypeScript также могут использоваться, но они еще дальше от того, что я ищу):

export class ClassName { }

и серия

export function functionName () { }

однако, как я обычно пишу свои модули, так что они позже импортируются как инстанцируемые замыкания, это:

var ClassName = function () { };
ClassName.prototype.functionName = function () { };
module.exports = ClassName;

есть ли способ сделать это с помощью Синтаксис экспорта TypeScript?

2 ответов


вы можете сделать это довольно просто в TypeScript 0.9.0 :

class ClassName { 
    functionName () { }
}

export = ClassName;

вот как я экспортирую CommonJS (узел.JS) модули с TypeScript:

src/ts/user / User.ТС

export default class User {
  constructor(private name: string = 'John Doe',
              private age: number = 99) {
  }
}

src/ts / index.ТС

import User from "./user/User";

export = {
  user: {
    User: User,
  }
}

tsconfig.в JSON

{
  "compilerOptions": {
    "declaration": true,
    "lib": ["ES6"],
    "module": "CommonJS",
    "moduleResolution": "node",
    "noEmitOnError": true,
    "noImplicitAny": true,
    "noImplicitReturns": true,
    "outDir": "dist/commonjs",
    "removeComments": true,
    "rootDir": "src/ts",
    "sourceMap": true,
    "target": "ES6"
  },
  "exclude": [
    "bower_components",
    "dist/commonjs",
    "node_modules"
  ]
}

dist / commonjs / index.js (скомпилированная точка входа модуля)

"use strict";
const User_1 = require("./user/User");
module.exports = {
    user: {
        User: User_1.default,
    }
};
//# sourceMappingURL=index.js.map

dist / commonjs / пользователь / пользователь.js (скомпилированный класс пользователя)

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class User {
    constructor(name = 'John Doe', age = 72) {
        this.name = name;
        this.age = age;
    }
}
exports.default = User;
//# sourceMappingURL=User.js.map

код тестирования (испытание.в JS)

const MyModule = require('./dist/commonjs/index');
const homer = new MyModule.user.User('Homer Simpson', 61);
console.log(`${homer.name} is ${homer.age} years old.`); // "Homer Simpson is 61 years old."