Passa al contenuto principale

Versione 2.0

tsconfig.json

{
  "compilerOptions": {
    ...
    "paths": {
      "ngx-este": ["../../../../../angular/ngx-este-20/projects/ngx-este/src/public-api"],
      "@angular/*": [
        "./node_modules/@angular/*"
      ],
      "@ng-bootstrap/*": [
        "./node_modules/@ng-bootstrap/*"
      ]
    }
    ...
 }

 

OLD

Come usarla in debug

npm install ../../../../../angular/ngx-este-20/projects/ngx-este

tsconfig.json

{
  "compilerOptions": {
    ...
	"paths": {
      "ngx-este": ["node_modules/ngx-este"]
      ...
	}
     "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    ...
}