Skip to content

Instantly share code, notes, and snippets.

@anstarovoyt
Last active May 30, 2016 10:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anstarovoyt/047384c131d9ed3795f4d063d4180c1f to your computer and use it in GitHub Desktop.
Save anstarovoyt/047384c131d9ed3795f4d063d4180c1f to your computer and use it in GitHub Desktop.
tsconfig.json with jspm support
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"baseUrl": "./target/development/jspm",
"paths": {
"@angular/core/*":["npm/@angular/core@2.0.0-rc.1/*"],
"@angular/*":["npm/@angular/*@2.0.0-rc.1"],
"rxjs/*":["npm/rxjs@5.0.0-beta.6/*"]
}
},
"exclude": [
"node_modules",
"target"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment