Skip to content

Instantly share code, notes, and snippets.

@anstarovoyt
Created June 3, 2016 15:54
Show Gist options
  • Save anstarovoyt/c1af904d9179fd617cb44ac2532f4ce2 to your computer and use it in GitHub Desktop.
Save anstarovoyt/c1af904d9179fd617cb44ac2532f4ce2 to your computer and use it in GitHub Desktop.
tsconfig.json
{
"compilerOptions": {
"target": "ES5",
"inlineSources": true,
"module": "system",
"moduleResolution": "node",
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": false,
"sourceMap": true,
"noResolve": false,
"baseUrl": ".",
"paths": {
"angular2-redux-util": [
"jspm_packages/npm/[email protected]"
],
"angular2-google-maps/core": [
"jspm_packages/npm/[email protected]/core"
],
"@angular/*": [
"jspm_packages/npm/@angular/*@2.0.0-rc.1"
],
"redux-thunk": [
"jspm_packages/npm/[email protected]"
],
"@angular/platform-browser/src/browser/browser_adapter": [
"jspm_packages/npm/@angular/[email protected]/src/browser/browser_adapter"
],
"rxjs/*": [
"jspm_packages/npm/[email protected]/*"
]
}
},
"filesGlob": [
"./**/*.ts",
"!./node_modules",
"/src/typings/app.d.ts"
],
"exclude": [
"src/public/world_data.ts",
"temp",
"node_modules",
"node_modules/*",
"jspm_packages",
"typings",
"dist",
"typings/*",
"typings/main.d.ts",
"typings/main"
],
"compileOnSave": false,
"buildOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment