Skip to content

Instantly share code, notes, and snippets.

@vmohir
Created November 25, 2019 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vmohir/c40e3e42b25cbe2697501b6fa986f76a to your computer and use it in GitHub Desktop.
Save vmohir/c40e3e42b25cbe2697501b6fa986f76a to your computer and use it in GitHub Desktop.
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@api/*": ["app/api/*"],
"@components/*": ["app/components/*"],
"@dialogs/*": ["app/dialogs/*"],
"@constants/*": ["app/constants/*"],
"@directives/*": ["app/directives/*"],
"@pipes/*": ["app/pipes/*"],
"@services/*": ["app/services/*"],
"@classes/*": ["app/classes/*"],
"@utils/*": ["app/utils/*"],
"@configs/*": ["app/_configs/*"],
"@app/*": ["app/*"],
"@env/*": ["environments/*"]
},
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom", "es6"],
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitAny": false
},
"rulesDirectory": ["node_modules/rxjs-tslint"],
"rules": {
"rxjs-collapse-imports": true,
"rxjs-pipeable-operators-only": true,
"rxjs-no-static-observable-methods": true,
"rxjs-proper-imports": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment