plugin-typescript
plugin-typescript copied to clipboard
TypeScript loader for SystemJS
Bumps [open](https://github.com/sindresorhus/open) from 0.0.5 to 7.0.0. Release notes *Sourced from [open's releases](https://github.com/sindresorhus/open/releases).* > ## v7.0.0 > ### Breaking > > - Correctly handle URL and path escaping on Windows ([#146](https://github-redirect.dependabot.com/sindresorhus/open/issues/146))...
I tried to load a file like this and failed: ```ts (function() { window['MyCompany'] = { component: {} } const foo: string = 'foo' window['MyCompany'].component.foo = foo }()) ``` error:...
With the breaking change of removing TypeChecking, I thought it would be a good time to propose something that I have wanted for a long time. When setting up a...
When using the plugin along with systemjs-builder and bundling into a single file, I'm getting some odd output when mixing in a regular .js file. I've created a simple, file...
From version 7.0.0 onwards, plugin-typescript no longer supports type-checking, files are now only transpiled and the plugin will report on syntax errors but will not report any type-checking errors. Here...
After posting this bug on several projects, I ended up posting it in here. I am trying to import HTML templates in typescript while using the text plugin. Typescript is...
Hi there, I'm getting the wrong path information being generated in my source map files. Details are: ### Versions: `[email protected]` `[email protected] Dev` `[email protected]` `[email protected]` (and I also tried with 2.2.0...
First, thanks for your awesome work on that plugin! I was wondering how/if support for Angular's AoT Compiler could be added. As describe at [`@angular/compiler-cli`](https://github.com/angular/angular/tree/master/modules/@angular/compiler-cli): > This CLI is intended...
I would like to have a project with angular1, hot-reloading and typescript. I googled a lof, but didn't found any good examples. I tried the your example projects, angular2 works,...