-
Notifications
You must be signed in to change notification settings - Fork 12k
Ability to configure aliases in .angular-cli.json #6282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Typescript provides extensive path mapping support. Scroll down to the path mapping section here: https://www.typescriptlang.org/docs/handbook/module-resolution.html |
@clydin Thanks for the feedback !! I didn't know |
I tried to use this method to import the requirejs compatible version of fabric.js but then the typings of My tsconfig.json: {
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"baseUrl": "src",
"paths": {
"fabric": [
"../node_modules/fabric/dist/fabric.require.js"
]
},
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2016",
"dom"
]
}
} Usage inside import { Component, OnInit, ViewChild, ElementRef } from "@angular/core";
import * as fabric from "fabric";
@Component({
selector: "app-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.scss"]
})
export class AppComponent implements OnInit {
@ViewChild("canvas")
public viewCanvas: ElementRef;
private canvas: fabric.Canvas;
public exportedSvg: string;
public ngOnInit(): void {
this.canvas = new fabric.Canvas(this.viewCanvas.nativeElement);
// create a rectangle object
const rect = new fabric.Rect({
left: 100,
top: 100,
fill: "red",
width: 20,
height: 20,
lockUniScaling: true
});
// "add" rectangle onto canvas
this.canvas.add(rect);
}
public export(): void {
this.exportedSvg = this.canvas.toSVG();
}
} Typescript should complain about I have looked around the internet searching for any solutions regarding this problem but I couldn't find any. |
Sure but SCSS is no TypeScript |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Bug Report or Feature Request (mark with an
x
)Desired functionality.
Ability to configure Webpack Aliases in
.angular-cli.json
.Currently the only way I know of to import components, services, etc, from one to another using the cli's webpack configurations is using relative paths for everything. Meaning often imports can have a good number of
../../../
this makes it difficult to refactor and maintain a growing application.Mention any other details that might be useful.
I understand
ng eject
is always an option, but that would also mean dropping out of the great support and configurations provided by the cli.The text was updated successfully, but these errors were encountered: