-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: reference in node_modules folder (#132)
Fixes #130
- Loading branch information
1 parent
a6e465f
commit 847f945
Showing
4 changed files
with
37 additions
and
10 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
import { HashMap } from '@esfx/collections-hashmap'; | ||
import { HashMap as HashMap1 } from '@hashmap'; | ||
import { HashMap as HashMap2 } from '@hashmap2'; | ||
|
||
const map = new HashMap(); | ||
const map1 = new HashMap1(); | ||
const map2 = new HashMap2(); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
{ | ||
"compilerOptions": { | ||
"outDir": "dist", | ||
"baseUrl": "./src", | ||
"baseUrl": "./", | ||
"paths": { | ||
"@/*": ["./*"] | ||
"@/*": ["./*"], | ||
"@hashmap": ["node_modules/@esfx/collections-hashmap/dist/index"], | ||
"@hashmap2": ["./node_modules/@esfx/collections-hashmap/dist/index"] | ||
} | ||
} | ||
} |
This file contains 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
This file contains 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