Skip to content

Instantly share code, notes, and snippets.

@miladvafaeifard
Created October 9, 2019 09:49
Show Gist options
  • Save miladvafaeifard/369e514d901d4b5facb6488b8fd3c7f7 to your computer and use it in GitHub Desktop.
Save miladvafaeifard/369e514d901d4b5facb6488b8fd3c7f7 to your computer and use it in GitHub Desktop.
typescript config for Angular
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
],
"strictNullChecks": true,
"noImplicitAny": true
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment