Skip to content

Commit

Permalink
fix: paths in tsconfig.json are not supported yet
Browse files Browse the repository at this point in the history
In stackblitz:
stackblitz/core#220
  • Loading branch information
esanzgar committed Mar 1, 2019
1 parent c0a0811 commit c24a36b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/containers/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Component, OnInit, OnDestroy } from "@angular/core";
import { Subscription, Observable } from "rxjs";

import { StoreService } from "store";
import { StoreService } from "../../store/store.service";
import { AuthService, User } from "../../auth/services/auth.service";

@Component({
Expand Down
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"paths": {
"store": ["src/store/store.service.ts"]
},
"importHelpers": true,
"strict": true,
"outDir": "./dist/out-tsc",
Expand All @@ -16,6 +13,9 @@
"experimentalDecorators": true,
"target": "es5",
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"]
"lib": ["es2018", "dom"],
"paths": {
"store": ["src/store/store.service.ts"]
}
}
}

0 comments on commit c24a36b

Please sign in to comment.