Skip to content

Instantly share code, notes, and snippets.

@pmaoui
Last active February 1, 2018 16:59
Show Gist options
  • Save pmaoui/abb7ba4b98370163dc119313378edd00 to your computer and use it in GitHub Desktop.
Save pmaoui/abb7ba4b98370163dc119313378edd00 to your computer and use it in GitHub Desktop.
AngularJS to Angular5 — Upgrading a large application
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noStrictGenericChecks": true,
"lib" : ["es2015", "dom"],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"rootDir": "<your_main_App_js_folder>",
"outDir": "dist/js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment