Skip to content

Instantly share code, notes, and snippets.

@schmidt1024
Created April 26, 2017 07:58
Show Gist options
  • Save schmidt1024/06a5e59fdf1df9204b9401577572da14 to your computer and use it in GitHub Desktop.
Save schmidt1024/06a5e59fdf1df9204b9401577572da14 to your computer and use it in GitHub Desktop.
tsconfig.json for angular2 with lib:dom to find localStorage
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "../dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2016",
"dom"
]
}
}
@schmidt1024
Copy link
Author

If your favorite editor "cannot find name localStorage"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment