typescript.api icon indicating copy to clipboard operation
typescript.api copied to clipboard

A typescript 0.9 compiler as a service api for nodejs.

Results 9 typescript.api issues
Sort by recently updated
recently updated
newest added

is there a way for converting typescript to javascript programmatically(sync way?)

added build.js as a package.json script

I wonder if it wouldn't be better to add the dep as "0.9.*" in order to avoid these updates on every minor release.

https://github.com/evanw/node-source-map-support This module provides source map support for stack traces in node via the V8 stack trace API.

I guess I understand now why inheritance dosn't works sometimes. I made a test: ``` __message = require('./../../../shared/lib/public/Message.ts').Message; __validatorMessage = require('./../../../shared/lib/public/ValidatorMessage.ts').ValidatorMessage; ``` First works, second fails because he inherit the...

Forgive me if I'm on the wrong path here, but it seems like I cannot consume the `typescript.api.d.ts` file as-is. I've created a [small gist](https://gist.github.com/martypitt/8412211) to demonstrate the issue. It...

Hi, I have some trouble with inheritance in node.js server side. **Controller.ts** ``` javascript /// import express = require("express"); export module Controllers{ export class Controller{ public static beforeSharedPath: string =...

Hi. I started to use your module today, it works well unlike the https://npmjs.org/package/typescript-require library which don't works at all. But, it's tricky and it took me some time (okay,...

a.ts ``` /// import _ = require('underscore') class Mapper {} ``` b.ts ``` /// var a: Mapper; ``` ``` > error TS2095: Could not find symbol 'Mapper'. ``` Removing the...