Skip to content

Instantly share code, notes, and snippets.

@LAlves91
LAlves91 / tsconfig.json
Last active May 15, 2022 22:35
Path mapping for one library
"paths": {
// Added by default by Angular CLI when generating a library
"lib-core": [
"dist/lib-core/lib-core",
"dist/lib-core"
],
"lib-core/*": [
"projects/lib-core/*"
]
}