I built an application for Angular 2 alpha 45 and it worked wonderfully, but I had to 'mess' around a lot to get it to work. I understand Angular 2, but I don't understand how to get it to work to start actually using Angular 2.
I am trying a clean build of the 'Angular 2: 5 min Quickstart'. There are a number of issues, and I am going to be as specific as possible. I want to learn why these issues are occurring and hopefully how to fix them. Visual Studio 2015 Update 1, Typescript 1.7.
Typescript Configuration: the quickstart includes a tsconfig.json file.
{
"compilerOptions": {
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": false
},
"exclude": [
"node_modules"
]
}
I am not sure if this does anything though, as I had to edit the ProjectName.csproj file and add the line:
<TypeScriptExperimentalDecorators>True</TypeScriptExperimentalDecorators>
to get rid of the Experimental Decorators Error.
https://github.com/Microsoft/TypeScript/issues/3124 seems to suggest the tsconfig file needs to be in /Scripts to work, but that doesn't work for me either.
I would like to know either how to get this tsconfig file to work, or to edit the .csproj file to get the same compiler options. If you look in the Project Properties > Typescript Build. Are these what matter? Should the module system be: System?
My file structure is the same as the Quickstart.
app/
app.component.ts
boot.ts
node_modules/
blah
index.html
tsconfig.json
package.json
I used powershell to run npm install to get everything in the node_modules directory.
import {Component} from 'angular2/core';
displays an error. ../node_modules/angular2/core';
doesn't display the error, but then when you build the project, you get lots of build errors in files in node_moduels/angular2/src/*
. Now, I might be able to go in and manually fix these issues, but I feel like the configuration is wrong if these errors are appearing. The tsconfig seems to want to exclude node_modules
. Why am I not able to use 'angular2/core'
and instead must use a relative path to it? If I include the node_modules in the Visual Studio project, there are an insane amount of build errors in the node_modules
.
Separately:
I am doing this clean build because I couldn't work out how to update the project from alpha 45 to beta 0. Fixing bugs in my project from Angular 2 changes will be easy, but getting the app to load all the modules at the moment is impossible.
The next part is assuming I get past the build errors:
In index.html
there is the:
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/boot')
.then(null, console.error.bind(console));
I have never gotten the System.import('app/boot')
to work without specifying the file extension. Is this a visual studio issue or is it a .NET MVC issue? If I specify the file extension in index.html
, then I get 404s with System.js trying to find the component files without a file extension (even though the config has defaultExtension: 'js'
. Is this because I need to include the js files in my project? Then if I get past that issue, I have to deal with
system.src.js:1049 GET http://localhost:63819/angular2/http 404 (Not Found)
I didn't have a single build error, but now System.js is not loading anything.
I feel like these are all issues that are created by different systems interpreting the typescript differently. I feel like I haven't been clear, but I don't know how to be clear about this issue. I would really appreciate any help and guidance you could bestow upon me. I feel like I have been searching for an answer to this for days now.
I've had some issues at the beginning too, but they're mostly easy to fix.
First, the project setup:
<TypeScriptToolsVersion>1.7.6</TypeScriptToolsVersion>
<TypeScriptModuleKind>system</TypeScriptModuleKind>
<TypeScriptExperimentalDecorators>true</TypeScriptExperimentalDecorators>
<TypeScriptEmitDecoratorMetadata>true</TypeScriptEmitDecoratorMetadata>
<TypeScriptAdditionalFlags> $(TypeScriptAdditionalFlags) --experimentalDecorators </TypeScriptAdditionalFlags>
<TypeScriptAdditionalFlags> $(TypeScriptAdditionalFlags) --emitDecoratorMetadata </TypeScriptAdditionalFlags>
System module is right, but check that it's properly included in your html file. You can also pick it in your project options window.
Depending on your VS version, you need to specify the flags in additional flags (older versions) or in the dedicated tags. You still need to check sourcemaps and es target version in your project options (es5 is EcmaScript 5 in EcmaScript version, obviously).
Don't forget to install the latest TypeScript version, otherwise RxJs won't work.
While downloading angular2 via npm makes sense, I wouldn't include node_modules directly in your typescript folder. Including the whole folder means taking every other node module along, like gulp for instance. Instead, you can simply copy the whole angular2 folder in your typescript directory, in the Content folder (you can do this automatically with gulp or a simple bat file if you want).
About the typescript errors, the issue is that Visual Studio will try to analyze all files in your angular2 folders, and some of those files are duplicated. You need to remove the sources and keep only the compiled js files and the type definitions. That means:
You need the rxjs folder at the same folder level as angular2, otherwise the includes won't work, ie :
Content
typings
angular2
rxjs
mymodule
whatever.ts
boot.ts
In your html files, you can link the js files in the bundle folders of both angular2 and rxjs.
<script src="https://code.angularjs.org/tools/system.js"></script>
<script src="/content/typings/angular2/bundles/angular2-polyfills.js"></script>
<script src="/content/typings/rxjs/bundles/Rx.min.js"></script>
<script src="/content/typings/angular2/bundles/angular2.dev.js"></script>
<script src="/content/typings/angular2/bundles/router.dev.js"></script>
Then your imports will look like this :
import { Component } from 'angular2/core';
To make the imports work, you need to configure System. The configuration is fairly simple :
System.paths = {
'boot': '/content/typings/boot.js',
'mymodule/*': '/content/typings/myModule/*.js'
};
System.config({
meta: {
'traceur': {
format: 'global'
},
'rx': {
format: 'cjs'
}
}
});
System.import('boot');
Include this code after the script tags for angular and all your other librairies.
Since Angular2 is included globally (via the script tags), you don't need to add it to the System configuration. Then in your files, you can import your modules this way :
import { MyThing } from "mymodule/whatever";