TypeScript is a typed superset of JavaScript created by Microsoft that adds optional types, classes, interfaces and modules and compiles to plain JavaScript.
0
votes
1answer
10 views
Tool to generate documentation from JSDoc on TypeScript interfaces
I have a .d.ts file with the interfaces describing my library. It has JSDoc comments, which will be shown via intellisense in Visual Studio when people refer to the .d.ts in their code:
/** ...
0
votes
1answer
25 views
hottowel (durandal) + typescript
this is my first post, so wish me luck :)
I want to use hot towel(durandal) + typescript , i followed these threads:
- how-can-i-use-a-class-for-my-shell-viewmodel-in-durandal
- ...
0
votes
1answer
19 views
Typescript specific methods for saving data online?
I'm thinking about using TypeScript to create an online app, and this will require saving of data online.
What are my options in regards to that?
Is there anything specific to using TypeScript ...
-2
votes
1answer
34 views
Better to use a Mac or PC to develop for Typescript? [closed]
I'v got access to both, but I would prefer to stay with the Mac, unless there are going to be major drawbacks from trying to develop with TS on the Mac?
0
votes
1answer
17 views
Is is possible to use Dreamweaver to create Typescript?
Is is possible to use Dreamweaver to create Typescript? either as an editor or in some fashion to compile?
0
votes
1answer
56 views
Why does TypeScript need Node.js?
This is probably not the best question but I'm still completely new to JS. I'm interested in Typescript (being an AS3 dev), but I keep reading that I need to instal node.js to compile it? why is that?
...
0
votes
1answer
40 views
JQuery plugin submethods
I am having some problems undestanding how to make "subfunctions" in a JQuery plugin.
What i would like to achieve is somehting like the following
var tags = $('#tagContainer').ImageTags({ option1: ...
2
votes
1answer
31 views
Include TypeScript files in azure git deploy
I'm trying to include TypeScript files in my automatic git deploy so I can showcase code for a framework I'm building. However, whenever I deploy to azurewebsites the deployments do not include the ...
0
votes
1answer
50 views
TypeScript vs Script# - Serverside access?
Trying to decide between the two for an asp.net mvc single-page application. One thing I can't seem to find out about TypeScript is if can I reference a TypeScript class server side, for example in a ...
0
votes
1answer
26 views
Typescript 0.8.3.1 Compile-On-Save degraded and stopped working today
Visual Studio 2012, Typescript 0.8.3.1 Yesterday, I started having problem where, when I saved 1 .ts file, it would show me errors (about 6 in 3 files because they relied on the change I had just ...
0
votes
2answers
33 views
Concat multiple ts into 1 single ts
I'm just wondering if there's any way to concat multiple .ts into 1 single .ts.
I've decoupled my main.ts and place each class files into a separate .ts (under the same module). I want to use ...
0
votes
1answer
49 views
Delete with modal confirm
I need delete row with modal confirm. If i delete first row - delete success, but if delete second and later rows, when showWrating(errMessage) because remembered first name parameter. How I can ...
0
votes
1answer
24 views
The property 'someProp' does not exist on value of type 'object' in Typescript
I have a JSON object returned to me from an $.ajax call. I get my object from my response like so:
var parsedJSON = $.parseJSON(jqXHR.responseText);
The object itself that gets passed from the ...
1
vote
1answer
34 views
“[index : string]” : IFoo notation in typescript
Can someone please tell me what the
[index : string] : IFoo means in
export interface IBar {
[index : string] : IFoo;
}
export interface IFoo {
CharacterName: string;
...
0
votes
2answers
53 views
getting json object back from failed $.ajax request
I'm just getting started on this web project. Typescript is being used. I'm looking at this:
$.ajax({
type: method,
url: url,
xhrFields: {
withCredentials: ...
0
votes
1answer
32 views
Automatically resolve/insert dependecies to other Typescript Files?
I am building a web framework for typescript (hope to push an early preview out soon).
I am in love with a lot of the great things of Typescript. But one thing i find very tedious is adding all the ...
1
vote
2answers
45 views
Is there a way to access “exports” object in TypeScript modules?
I am trying to use durandal and I need to getModuleId by passing the current module. My problem is that as I am using TypeScript, the underlaying object which is returned from AMD module seems not to ...
0
votes
1answer
38 views
TypeScript youtube.d.ts from DefinitelyTyped
Trying out TypeScript/Javascript for the first time; trying to merge the TypeScript time example with the YouTube iframe API here:
https://developers.google.com/youtube/iframe_api_reference
My html ...
0
votes
2answers
32 views
Defining shared library in Typescript and Visual Studio Express
I have ProjectA set up compiling and running in Visual Studio with Typescript. I now want to set up ProjectB, and use some of the code from ProjectA
So if my directory structure is:
...
0
votes
1answer
49 views
Typescript Typedeclaration for Connect Framework
Could not find them on https://github.com/borisyankov/DefinitelyTyped are they available somewhere else?
1
vote
1answer
46 views
Implementing TypeScript interface with bare function signature plus other fields
How do I write a class that implements this TypeScript interface (and keeps the TypeScript compiler happy):
interface MyInterface {
(): string;
text2(content: string);
}
I saw this related ...
0
votes
1answer
60 views
how to get access to classes from a Kinetic.js click event
I can't seem to get a typescript class instance within my click event.
I have a TypeScript class Navigation.
class Navigation
{
currentPage: number;
wireMouseEvents()
{
...
3
votes
1answer
41 views
TypeScript emit boilerplate code only once
After some more close examination of the code generated from *.ts files I found that if you extend a class, then the boilerplate __extends function is copied as many times, as many times you extended ...
1
vote
1answer
65 views
How can I debug modular TypeScript with source maps?
I am having an impossible time trying to get TypeScript debugging working in Chrome Dev Tools. I've generated source maps for all my .ts files, and the javascript looks correct, but Chrome only loads ...
2
votes
1answer
76 views
Compile-On-Save with Typescript 0.9
So I know that the Typescript 0.9 Alpha is out, and one of the drawbacks is the ability to Compile-On-Save is not available yet.
My question is, is there another way to get this feature?
Web ...
-3
votes
1answer
57 views
TypeScript video tutorials [closed]
Apologies if I am posting this question at wrong place.
Is there any good video learning resources available for TypeScript language from Microsoft. Any link or help will be greatly appreciated.
0
votes
3answers
20 views
kinetic.d.ts for plugin label missing
I downloaded Kinetic.d.ts from Kinectic.d.ts
It's missing Label plugin so I'm trying to create it.
I created:
class Label extends Group
{
constructor(config: LabelConfig);
setText(text: ...
0
votes
1answer
27 views
TypeScript and Kinetic .on click error
I'm getting errors with TypeScript and using the click event on a Kinectic.Text.
Here's my Text:
var myButton = new Kinetic.Text({
// set properties here...
});
Here's the problem code:
...
0
votes
2answers
48 views
Reference .ts file for type check only
I'd like to reference another .ts file in a .ts file. In my real project, I only need this for type safety (overriding an inherited member for correct compilation).
My sample:
Test1.ts:
export ...
1
vote
1answer
70 views
How to load a public function using QUnit and TypeScript
I am using QUnit to test my typescript code and everything is fine when I run a simple example like this: http://thomasardal.com/testing-typescript-with-typescript-using-qunit-and-chutzpah/
But my ...
1
vote
1answer
43 views
TypeScript: Global static variable best practice
I have this class where I need to increment a number each time the class is instantiated.
I have found two ways to this where both ways works, but I am not sure yet on what is the best pracetice
...
0
votes
2answers
35 views
TypeScript - Inline function not getting checked for type safety
I am new to typescript and trying few things
where function demands number parameter and bool as return value.
function where(items: number[], filter: (item: number) => bool) {
for (var ...
1
vote
1answer
50 views
TypeScript: import module with only statements
I have a page-a.ts which would compile into page-a.js:
alert('this is from page-a');
And I have a main.ts which compiles into main.js:
import pageA = module('page-a')
alert('this is from main');
...
1
vote
2answers
40 views
How to access class variable inside of jquery event?
If I'm inside a jquery event, I'm not sure how I can access class variables. Example below
/// <reference path="../typings/jquery/jquery.d.ts" />
export class Notes {
// i want to access ...
1
vote
1answer
49 views
typescript jquery focusin unbind event doesnt work
I have a focusin binding inside a class. I've tried the jQuery unbind method. Seems not to work.
This is just an example :
<html>
<body>
<input type="text"/>
...
0
votes
1answer
67 views
Typescript AMD Modules for Node.js
I have the following Typescript File which i compile with AMD Modules:
import tsmx = module("../TSMX/tsmx");
tsmx.createServer(1337);
which produces the following js:
define(["require", "exports", ...
0
votes
1answer
72 views
TypeScript AMD modules. Names and namespaces.
I have a problem with naming my AMD modules. What is best practice for doing it?
For example IProfileService.ts:
export interface IProfileService {
savePersonalInfo(): void;
}
In my ...
2
votes
2answers
103 views
Typescript 0.9: module functions
It seems that you can't do this anymore in TypeScript 0.9:
declare module "mymodule" {
export function(): any;
}
Is there a way of creating typings that allow to call the exported module in ...
0
votes
2answers
72 views
Relative paths using requirejs in combination with Typescript and AMD
There are several Javascript files, organized in folders Scripts/folder1, Scripts/folder2, ...
With requirejs.config.baseUrl a folder is defined as the default, for example Scripts/folder1. Then in ...
0
votes
1answer
29 views
Comment referenced class throws ReferenceError at runtime
This builds with no errors at compile time, but when I run it, I'm getting a ReferenceError when I try to use the net class. (net is not defined)
//chat.ts file
/// <reference ...
8
votes
4answers
162 views
Scoping of 'this' in TypeScript
I have a very simple class, but already run into pain with the definition of ‘this’ in Typescript:
Typescript
/// <reference path='jquery.d.ts' />
/// <reference path='bootstrap.d.ts' />
...
1
vote
1answer
29 views
How to use 'new' for jQuery.Event()
Using the existing DefinitelyTyped jquery.d.ts declarations, I am not able to do this:
/// <reference path="../Scripts/typings/jquery/jquery.d.ts" />
declare var firstEvent;
var newEvent = new ...
0
votes
1answer
94 views
Delete operatin by Confirm Modal using Bootstrap
I have this following code for making a confirm dialog using Bootstrap modal.I have two modal forms. First form - editable, for add, edit and delete records. When I trying delete record I'm used ...
2
votes
2answers
137 views
TypeScript and ASP.NET MVC 4
How to use TypeScript with ASP.NET MVC 4?
I want my IDE to do these steps:
Compile (interpret) my typescript files (*.ts) by typescript compiler.
Minimize all the javascript by asp.net mvc 4 ...
1
vote
1answer
64 views
How to load OBJ model with three.js in TypeScript
I am using TypeScript and three.d.ts from definitely typed. I have no problems using THREE.JSONLoader, but how do I use an OBJLoader from here in a TypeScript project. I probably need to create an ...
2
votes
1answer
94 views
Web Essentials: Compile all TypeScript files on build doesn't work
Just as the title says: I have this option activated through Tools > Options > Web Essentials window, but the files aren't compiled on build. No warnings or errors, the Output panel dedicated to Web ...
0
votes
1answer
54 views
Build error: The command “tsc --comments --module AMD --sourcemap --target ES3 ” exited with code 1
I was receiving the following error on build in a Visual Studio HTML Application with TypeScript project:
The command "tsc --comments --module AMD --sourcemap --target ES3 " exited with code 1. ...
1
vote
1answer
91 views
Why won't visual studio recognise a typescript type defintion?
I have installed Visual Studio Express 2012 for Web.
I have TypeScript set up, working and compiling down to JS.
I have added the EaselJS library, and also a type defintion file for it (called ...
2
votes
2answers
89 views
Unable to get value of the property 'elementType': object is null or undefined
I have the following code in a TypeScript file:
define('myModule', [], function () {
var self = {
init: function () {
doSomething();
}
};
var ...
2
votes
1answer
97 views
Generate documentation for TypeScript?
Are there any tools for generating documentation for TypeScript source code? Or should I use something generic like NaturalDocs? What would be the recommended style of the block comments / those ...


