Created
February 20, 2021 19:06
-
-
Save sayinserdar/7d00da489aac214d8b9a98c269d1d9ff to your computer and use it in GitHub Desktop.
Tsconfig with paths
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compileOnSave": false, | |
"compilerOptions": { | |
"baseUrl": "./src", | |
"outDir": "./dist/out-tsc", | |
"sourceMap": true, | |
"declaration": false, | |
"downlevelIteration": true, | |
"experimentalDecorators": true, | |
"module": "esnext", | |
"moduleResolution": "node", | |
"importHelpers": true, | |
"target": "es2015", | |
"typeRoots": [ | |
"node_modules/@types" | |
], | |
"paths": { | |
"@app/*": [ | |
"app/core/*" | |
], | |
"@shared/*": [ | |
"app/shared/*" | |
], | |
"@env": [ | |
"environments/environment" | |
], | |
"@modules/*": [ | |
"app/modules/*" | |
], | |
"@data/*": [ | |
"app/data/*" | |
] | |
}, | |
"lib": [ | |
"es2018", | |
"dom" | |
], | |
}, | |
"angularCompilerOptions": { | |
"fullTemplateTypeCheck": true, | |
"strictInjectionParameters": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment