mirror of
https://github.com/zrwusa/data-structure-typed.git
synced 2025-04-25 23:33:31 +00:00
type importing bug solved
This commit is contained in:
parent
d57926602d
commit
bedf9de49f
2 changed files with 7 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "data-structure-typed",
|
||||
"version": "0.8.6",
|
||||
"version": "0.8.16",
|
||||
"description": "Hash (CoordinateSet, CoordinateMap) Heap (MaxHeap, MinHeap) Binary Tree (AVL Tree, Binary Indexed Tree, Binary Search Tree, Segment Tree, Tree Multiset) Graph (Directed Graph, Undirected Graph) Linked List (Singly Linked List, Doubly Linked List) Matrix Priority Queue (Max Priority Queue, Min Priority Queue) Queue (Queue, Dequeue) Stack Trie",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
|
@ -62,9 +62,10 @@
|
|||
"author": "Tyler Zeng",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/zrwusa/data-structure-ts/issues"
|
||||
"url": "https://github.com/zrwusa/data-structure-typed/issues"
|
||||
},
|
||||
"homepage": "https://github.com/zrwusa/data-structure-ts#readme",
|
||||
"homepage": "https://github.com/zrwusa/data-structure-typed#readme",
|
||||
"types": "dist/index.d.ts",
|
||||
"devDependencies": {
|
||||
"@types/lodash": "^4.14.178",
|
||||
"typescript": "^4.6.2"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
"strict": true,
|
||||
"esModuleInterop": true,
|
||||
"moduleResolution": "node",
|
||||
"declarationDir": "./dist/types",
|
||||
"declarationDir": "./dist",
|
||||
"skipLibCheck": true
|
||||
|
||||
// "allowJs": true,
|
||||
|
@ -25,7 +25,8 @@
|
|||
// "noEmit": true,
|
||||
},
|
||||
"include": [
|
||||
"src"
|
||||
"src",
|
||||
"node_modules/data-structure-typed"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
|
|
Loading…
Add table
Reference in a new issue