Created
February 1, 2018 06:47
-
-
Save GregOnNet/5f4391af476cfd6bc8dd4b07c0216fc1 to your computer and use it in GitHub Desktop.
using typescript paths in @angular/cli projects
This file contains hidden or 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
{ | |
"extends": "../tsconfig.json", | |
"compilerOptions": { | |
"baseUrl": ".", | |
"paths": { | |
"@utilities/*": ["./app/utilities/*"] | |
}, | |
"outDir": "../out-tsc/app", | |
"module": "es2015", | |
"types": [] | |
}, | |
"exclude": ["test.ts", "**/*.spec.ts"] | |
} |
This file contains hidden or 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": ".", | |
"paths": { | |
"@utilities/*": ["./src/app/utilities/*"] | |
}, | |
"outDir": "./dist/out-tsc", | |
"sourceMap": true, | |
"declaration": false, | |
"moduleResolution": "node", | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"target": "es5", | |
"typeRoots": [ | |
"node_modules/@types" | |
], | |
"lib": [ | |
"es2017", | |
"dom" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment