Skip to content

Instantly share code, notes, and snippets.

@sametcelikbicak
Created November 12, 2019 14:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sametcelikbicak/a6be6c78b3f243f1a632bc1268f9e893 to your computer and use it in GitHub Desktop.
Save sametcelikbicak/a6be6c78b3f243f1a632bc1268f9e893 to your computer and use it in GitHub Desktop.
Angular tsconfig configuration
{
"compileOnSave": false,
"compilerOptions": {
"importHelpers": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
],
"module": "es2015",
"baseUrl": "./",
"noUnusedLocals": true,
"noUnusedParameters": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment