Created
January 8, 2017 12:58
-
-
Save sionjlewis/8bc3b095acc0987ac2ac46966f5d618f to your computer and use it in GitHub Desktop.
Hello Angular World: code snippet for article (http://www.sjlewis.com). The complete source code and project files can be found here: https://github.com/sionjlewis/Hello.Angular.World
This file contains 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
{ | |
"compilerOptions": { | |
"declaration": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"lib": [ "es2015", "dom" ], | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"noImplicitAny": true, | |
"removeComments": false, | |
"sourceMap": true, | |
"suppressImplicitAnyIndexErrors": true, | |
"target": "es5", | |
"typeRoots": [ | |
"../../node_modules/@types/" ], | |
"removeComments": false | |
}, | |
"compileOnSave": true, | |
"exclude": [ | |
"node_modules/*", | |
"**/*-aot.ts" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment