Created
June 3, 2016 15:54
-
-
Save anstarovoyt/c1af904d9179fd617cb44ac2532f4ce2 to your computer and use it in GitHub Desktop.
tsconfig.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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